forked from iann0036/Lone-Tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
37 lines (37 loc) · 808 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
{
"name": "Lone Tab",
"short_name": "Lone Tab",
"version": "1.0.1",
"manifest_version": 2,
"author": "Ian Mckay",
"description": "A new, unique session for every tab opened.",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "icon-16.png",
"32": "icon-32.png",
"128": "icon-128.png"
},
"background": {
"scripts": ["common.js","main.js"]
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"inject.js",
"common.js"
],
"browser_action": {
"default_popup": "popup.html"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"storage",
"*://*/*"
]
}