-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
39 lines (34 loc) · 750 Bytes
/
manifest.json
File metadata and controls
39 lines (34 loc) · 750 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
37
38
39
{
"manifest_version": 2,
"name": "ScriptFilter",
"version": "4.1",
"author": "Baptiste Thémine",
"homepage_url": "https://github.com/Baptistou/ScriptFilter",
"description": "__MSG_@manifest_description__",
"default_locale": "en",
"permissions": [
"<all_urls>",
"contextMenus",
"storage",
"tabs",
"webRequest",
"webRequestBlocking"
],
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png"
},
"background": {
"scripts": ["functions.js","webext.js","background.js"]
},
"browser_action": {
"default_title": "ScriptFilter",
"default_icon": "images/icon64.png"
},
"options_ui": {
"page": "settings/index.html",
"open_in_tab": true
}
}