-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
42 lines (42 loc) · 938 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
{
"browser_action": {
"browser_style": true,
"default_title": "B&W filter",
"default_icon": {
"19": "icons/icon-19.png",
"38": "icons/icon-38.png"
}
},
"background": { "scripts": ["scripts/background_script.js"] },
"content_scripts": [
{
"matches": [ "<all_urls>" ],
"js": [ "scripts/content_script.js" ]
}
],
"description": "Firefox Gray scale filter",
"homepage_url": "https://github.com/MaximPerry/Firefox-GrayScaleFilter",
"icons": {
"48": "icons/icon-48.png",
"96": "icons/icon-96.png"
},
"manifest_version": 2,
"name": "SlashOn BW filter",
"options_ui": {
"page": "settingsUI/settings.html",
"browser_style": true
},
"permissions": [
"<all_urls>",
"notifications",
"storage",
"activeTab"
],
"version": "1.4.1",
"author": "Maxim Perry",
"web_accessible_resources": [
"icons/*.png",
"*.html",
"*.js"
]
}