forked from coreytegeler/add-art-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
41 lines (40 loc) · 993 Bytes
/
manifest.json
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
37
38
39
40
41
{
"manifest_version": 2,
"name": "Add Art",
"description": "Replacing ads with art.",
"author" : "@owise1,Corey Tegeler",
"version": "2.4.3",
"homepage_url" : "http://add-art.org/",
"icons": {
"16": "images/icon-16.png",
"32": "images/icon-32.png",
"64": "images/icon-64.png"
},
"browser_action": {
"default_icon": "images/icon-64.png",
"default_popup": "interface.html",
"default_title": "Add Art!"
},
"permissions": [
"storage",
"tabs",
"unlimitedStorage",
"webNavigation",
"notifications",
"webRequest",
"http://*/*",
"https://*/*"
],
"web_accessible_resources" : ["images/*"],
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["js/lib/jquery-3.2.1.min.js", "js/lib/q.js", "js/lib/ramda.min.js", "js/artAdder.js", "js/document_end.js"],
"run_at": "document_end",
"all_frames": true
}
],
"background": {
"page": "background.html"
}
}