-
Notifications
You must be signed in to change notification settings - Fork 9
/
manifest.json~
43 lines (43 loc) · 961 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
{
"name": "Surplus",
"version": "4.0.4",
"description": "Google Plus Integration for Chrome",
"background_page": "bg4.html",
"icons": {
"16": "img/16.png",
"32": "img/32.png",
"48": "img/48.png",
"64": "img/64.png",
"128": "img/128.png"
},
"options_page": "options4.html",
"browser_action": {
"default_icon": "img/old.png",
"default_title": "Surplus",
"default_popup": "popup4.html"
},
"content_scripts": [
{
"matches": [
"http://*.google.com/*extension=surplus*",
"https://*.google.com/*extension=surplus*"
],
"js": ["inject4.js"],
"run_at": "document_idle",
"all_frames": true
},
{
"matches": ["https://plus.google.com/*surplus=inner*"],
"js": ["inner4.js"],
"all_frames": true
}
],
"permissions": [
"http://*.google.com/",
"https://*.google.com/",
"idle",
"geolocation",
"tabs",
"notifications"
]
}