-
Notifications
You must be signed in to change notification settings - Fork 24
/
manifest.json
53 lines (53 loc) · 1.41 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
53
{
"name": "__MSG_extName__",
"version": "4.0.3",
"manifest_version": 2,
"description": "__MSG_extDescription__",
"default_locale": "en",
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"permissions": ["tabs", "https://plus.google.com/*"],
"background": {
"scripts": [ "js/settings.js", "js/extended_shares.js", "js/background_controller.js" ]
},
"options_page": "options.html",
"content_scripts": [{
"matches": ["https://plus.google.com/*"],
"js": ["js/extended_shares.js", "js/extended_injection.js"],
"css": ["css/extended_injection.css"],
"run_at": "document_end",
"all_frames": true
}],
"web_accessible_resources": [
"img/app.png",
"img/addthis.png",
"img/blogger.png",
"img/digg.png",
"img/facebook.png",
"img/google.png",
"img/hyves.png",
"img/identica.png",
"img/linkedin.png",
"img/livejournal.png",
"img/mailto.png",
"img/netvibes.png",
"img/pingfm.png",
"img/pinterest.png",
"img/popup_close.png",
"img/posterous.png",
"img/researchgate.png",
"img/reddit.png",
"img/scoopit.png",
"img/share.png",
"img/stumbleupon.png",
"img/technorati.png",
"img/tumblr.png",
"img/twitter.png",
"img/yahoo.png"
],
"content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'"
}