-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmanifest.json
49 lines (49 loc) · 977 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
47
48
49
{
"name": "SIPML5 Client",
"description": "A SIP client that sits on your toolbar",
"icons": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"version": "0.4.0",
"manifest_version": 2,
"permissions": [
"storage",
"notifications",
"contextMenus",
"tabs",
"*://*/*"
],
"background": {
"scripts": [
"js/jquery.js",
"js/SIPml-api.js",
"js/sip.js",
"js/background.js"
],
"persistent": true
},
"browser_action": {
"default_icon": {
"19": "img/icon19.png",
"38": "img/icon38.png"
},
"default_title": "SIP Client"
},
"content_scripts": [
{
"matches": ["*://*/*"],
"js": ["js/content.js"]
}
],
"options_page": "options.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"web_accessible_resources": [
"img/*",
"wav/*",
"css/*",
"js/*",
"partials/*"
]
}