forked from siplabs/converba-phonetools-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (37 loc) · 1.01 KB
/
manifest.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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
{
"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",
"contentscript.js",
"jquery.kazoosdk.js"],
"run_at" : "document_idle",
"all_frames" : true,
"css" : [ "injected.css" ]
}
],
"permissions": [ "notifications","downloads", "tabs", "http://*/*", "https://*/*", "tts" ,"identity", "contextMenus", "activeTab" ],
"icons": {
"128": "images/logo_128x128.png"
}
}