-
Notifications
You must be signed in to change notification settings - Fork 11
/
manifest.json
52 lines (52 loc) · 1.02 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
48
49
50
51
52
{
"name" : "__MSG_appName__",
"short_name": "SipDialer",
"version" : "1.0",
"default_locale": "en",
"description" : "__MSG_appDesc__",
"manifest_version": 2,
"options_page": "options.html",
"browser_action": {
"default_icon": "images/logo_offline_128x128.png",
"default_popup": "tabs.html"
},
"web_accessible_resources": [
"images/click2dial.png",
"injected.html",
"injected.js",
"audio1.mp3" ],
"background" : {
"page" : "background.html",
"persistent" : true
},
"content_scripts" : [
{
"matches" : [
"http://*/*",
"https://*/*"
],
"js" : [
"jquery.js",
"jquery.kazoosdk.js",
"utils.js",
"contentscript.js"
],
"run_at" : "document_idle",
"all_frames" : false,
"css" : [ "injected.css" ]
}
],
"permissions": [
"notifications",
"downloads",
"tabs",
"http://*/*",
"https://*/*",
"tts",
"identity",
"contextMenus",
"activeTab" ],
"icons": {
"128": "images/logo_128x128.png"
}
}