-
Notifications
You must be signed in to change notification settings - Fork 7
/
manifest.json
47 lines (45 loc) · 1.17 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
42
43
44
45
46
47
{
"name": "__MSG_appName__",
"short_name": "AudD",
"description": "__MSG_appDesc__",
"default_locale": "en",
"manifest_version": 3,
"author": "app@audd.io",
"version": "3.1.4",
"background": {
"service_worker": "background.js"
},
"content_scripts": [ {
"js": [ "src/content.js" ],
"matches": [ "*://*/*" ]
} ],
"action": {
"default_icon": "img/favicon.png",
"default_popup": "src/popup/popup.html",
"default_title": "AudD"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"host_permissions": [
"https://api.audd.io/",
"https://www.googleapis.com/"
],
"oauth2": {
"client_id": "875741845768-1jga752cov9r774giitn0hbeom6hkh19.apps.googleusercontent.com",
"scopes":["https://www.googleapis.com/auth/chromewebstore.readonly", "https://www.googleapis.com/auth/userinfo.profile"]
},
"icons": {
"128": "img/favicon-128.png"
},
"update_url": "https://clients2.google.com/service/update2/crx",
"permissions": [
"identity",
"identity.email",
"storage",
"unlimitedStorage",
"background",
"activeTab",
"tabCapture",
"notifications" ]
}