-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
47 lines (47 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
42
43
44
45
46
47
{
"manifest_version": 2,
"name": "Image Filter",
"description": "Applies filters to images on web-pages to improve contrast.",
"version": "1.0",
"applications": {
"gecko": {
"id": "[email protected]"
}
},
"browser_action": {
"default_title": "Image Filter",
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon.png"
},
"options_page": "options.html",
"permissions": ["tabs", "storage", "contextMenus", "<all_urls>"],
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"jquery-2.2.0.min.js",
"mousetrap.min.js",
"defaults.js",
"storage.js",
"messaging.js",
"imagefinder.js",
"histogram.js",
"filter.js",
"filtermanager.js",
"content.js"
],
"run_at": "document_idle"
}
],
"background": {
"scripts": ["defaults.js", "storage.js", "messaging.js", "logging.js", "background.js"]
}
}