-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmanifest.json
49 lines (49 loc) · 1.5 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
{
"name" : "BroadSoft Xtended Dialer for Google Chrome™",
// See http://developer.chrome.com/extensions/app_identity.html to get your own key and IDs"
//"key": "<enter key>",
"short_name": "Xtended Dialer",
"version" : "1.2",
"description" : "A Google Chrome™ extension that provides BroadWorks telephony integration.",
"manifest_version": 2,
"omnibox": { "keyword" : "-call" },
"options_page": "options.html",
"browser_action": {
"default_icon": "images/bsft_logo_16x16.png",
"default_popup": "options.html"
},
"web_accessible_resources": [ "images/click2dial.png", "injected.js" ],
"background" : {
"page" : "background.html",
"persistent" : true
},
"content_scripts" : [
{
"matches" : [
"http://*/*",
"https://*/*"
],
"js" : [
"jquery.js",
"jquery.base64.js",
"contentscript.js",
"xsiactions.js"],
"run_at" : "document_idle",
"all_frames" : true,
"css" : [ "injected.css", "jquery-ui.css" ]
}
],
"permissions": [ "notifications", "tabs", "http://*/*", "https://*/*", "tts" ,"identity"],
"oauth2": {
// See http://developer.chrome.com/extensions/app_identity.html to get your own client ID"
"client_id": "anonymous",
"scopes": [
"https://www.google.com/m8/feeds/"
]
},
"icons": {
"16": "images/bsft_logo_16x16.png",
"48": "images/bsft_logo_48x48.png",
"128": "images/bsft_logo_128x128.png"
}
}