-
Notifications
You must be signed in to change notification settings - Fork 3
/
manifest.json
30 lines (30 loc) · 1.26 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
{
"background": {
"page": "background.html"
},
"browser_action": {
"default_icon": "icon190.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["https://app.sipgate.com/*"],
"js": ["injector.js"]
}
],
"content_security_policy": "script-src 'self' https://apis.google.com/; object-src 'self' ",
"description": "Make and receive calls in your browser",
"icons": {"512": "icon.png"},
"manifest_version": 2,
"name": "sipgate browser phone",
"options_page": "options.html",
"permissions": [ "identity", "activeTab", "background", "storage", "notifications", "https://api.sipgate.com/v1/authorization/oauth/token", "https://docs.google.com/a/sipgate.de/forms/d/1uAIVvTHP-G7XYUX0SQ4A6LCxZuZxvXQRUh4h0GMvAn8/formResponse", "https://www.google.com/m8/feeds/contacts/*" ],
"version": "1.6.4",
"web_accessible_resources": [ "options.html", "phoneinject.js", "callIcon.gif", "icon.png", "icon190.png", "defaultavatar.png", "callpopup.html" ],
"oauth2": {
"client_id": "704000217613-cl5rnmu1p13vrvaa7erecajvp3j275k4.apps.googleusercontent.com",
"scopes": [
"https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/contacts.readonly"
]
}
}