-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
42 lines (35 loc) · 963 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
{
"manifest_version": 2,
"name": "See The Truth!",
"version": "1.1",
"description": "Show a sidebar with the community-edited truth about a site or URL! Install now.",
"icons": {
"48": "icons/seethetruth-48.png"
},
"content_scripts": [{
"run_at": "document_start",
"matches": [
"https://*/*"
],
"js": ["content-script.js"]
}],
"background": {
"scripts":["background.js"]
},
"browser_action": {
"default_icon": {
"19": "icons/seethetruth-19.png",
"38": "icons/seethetruth-48.png"
},
"default_title": "Site information"
},
"sidebar_action": {
"default_title": "Truth about the site",
"default_panel": "sidebar.html",
"default_icon": "icons/seethetruth-48.png"
},
"web_accessible_resources": ["sidebar.html", "create-page.html"],
"permissions": [
"tabs"
]
}