forked from AudDMusic/chrome-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
46 lines (42 loc) · 1013 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
43
44
45
46
{
"name": "__MSG_appName__",
"short_name": "AudD",
"description": "__MSG_appDesc__",
"default_locale": "en",
"manifest_version": 2,
"author": "[email protected]",
"version": "1.0.4",
"background": {
"scripts": [
"src/vendor/jquery.min.js",
"src/bg/background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icons/icon.png",
"default_popup": "src/popup/popup.html",
"default_title": "AudD"
},
"content_scripts": [ {
"js": [
"js/content/content.js",
"src/vendor/jquery.min.js"
],
"matches": [ "*://*/*" ]
} ],
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com 'unsafe-eval'; object-src 'self'",
"icons": {
"128": "icons/icon.png"
},
"update_url": "https://clients2.google.com/service/update2/crx",
"permissions": [
"identity",
"identity.email",
"storage",
"unlimitedStorage",
"background",
"activeTab",
"tabCapture",
"notifications" ]
}