forked from subscriptionscore/extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
41 lines (41 loc) · 1.01 KB
/
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
{
"name": "Subscription Score",
"description": "Never regret subscribing to a mailing list again",
"version": "0.4.4",
"background": {
"page": "background.html"
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "assets/logo.png"
},
"icons": {
"16": "assets/icon-16.png",
"32": "assets/icon-32.png",
"64": "assets/icon-64.png",
"128": "assets/icon.png"
},
"web_accessible_resources": [
"onload.bundle.js",
"frame.html",
"frame.bundle.js",
"frame.css"
],
"permissions": ["tabs", "storage"],
"optional_permissions": ["<all_urls>"],
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": ["https://mail.google.com/*/*"],
"js": ["/gmail.bundle.js"],
"css": ["/gmail.bundle.css"],
"run_at": "document_idle"
},
{
"matches": ["<all_urls>"],
"js": ["/content.bundle.js"],
"run_at": "document_start"
}
]
}