-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmanifest.json
More file actions
42 lines (36 loc) · 853 Bytes
/
manifest.json
File metadata and controls
42 lines (36 loc) · 853 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
40
41
42
{
"manifest_version": 2,
"name": "HTMLFilter",
"version": "2.0",
"author": "Baptiste Thémine",
"homepage_url": "https://github.com/Baptistou/HTMLFilter",
"description": "__MSG_@manifest_description__",
"default_locale": "en",
"permissions": [
"<all_urls>",
"contextMenus",
"storage"
],
"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"]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"css": ["content/custom.css"],
"js": ["functions.js","webext.js","content/script.js"]
}],
"browser_action": {
"default_title": "HTMLFilter (OFF)",
"default_icon": "images/icon-read.png"
},
"options_ui": {
"page": "settings/index.html",
"open_in_tab": true
}
}