-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
41 lines (41 loc) · 1021 Bytes
/
manifest.json
File metadata and controls
41 lines (41 loc) · 1021 Bytes
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": "Phone To Desktop",
"version": "1.5.3",
"manifest_version": 2,
"applications": {
"gecko": {
"id": "@phonetodesktop",
"strict_min_version": "56.0a1"
}
},
"default_locale": "en",
"description": "__MSG_extDesc__",
"background": {
"scripts": [
"credentials.js",
"background.js",
"authorize.js",
"helper.js"
]
},
"icons": {
"16": "images/icon16.png",
"48": "images/icon48.png",
"128": "images/icon128.png"
},
"browser_action": {
"default_icon": "images/icon16.png",
"default_title": "Phone To Desktop",
"default_popup": "popup.html"
},
"permissions": [
"tabs",
"contextMenus",
"identity",
"storage",
"notifications",
"*://www.googleapis.com/*",
"*://accounts.google.com/*"
],
"content_security_policy": "script-src 'self'; object-src 'self'"
}