-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·36 lines (34 loc) · 909 Bytes
/
Copy pathmanifest.json
File metadata and controls
executable file
·36 lines (34 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"manifest_version": 2,
"name": "Lain++",
"version": "0.0.3",
"description": "This extension gives Lainchan.org new functions",
"author": "Akko",
"homepage_url": "https://github.com/4k1k0/lainpp",
"browser_action": {
"default_icon": "img/icon48.png",
"default_title": "Lain++"
},
"icons": { "16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png" },
"content_scripts": [
{
"matches": [
"https://lainchan.org/*",
"https://lainchan.org/*/res/*.html"
],
"exclude_matches": [
"https://lainchan.org/*/index.html",
"https://lainchan.org/*/catalog.html"
],
"css": ["css/style.css"],
"js": ["js/script.js"],
"run_at": "document_end"
}
],
"permissions": [
"activeTab",
"https://ajax.googleapis.com/"
]
}