-
Notifications
You must be signed in to change notification settings - Fork 5
/
manifest.json
73 lines (63 loc) · 1.32 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"manifest_version": 2,
"name": "StumbleBar by StumbleUpon",
"short_name": "StumbleBar",
"version": "11.313",
"homepage_url": "http://www.stumbleupon.com",
"author": "StumbleUpon",
"content_scripts": [{
"js": ["polyfill.js", "utils.js", "dragndrop.js", "bar.js"],
"css": ["bar.css"],
"matches": ["<all_urls>"],
"match_about_blank": true,
"all_frames": false,
"run_at": "document_end"
}],
"web_accessible_resources": [
"toolbar.html"
],
"description": "Discover the best of the web",
"icons": {
"32": "asset/Logo-128.png",
"48": "asset/Logo-128.png",
"64": "asset/Logo-128.png",
"128": "asset/Logo-128.png"
},
"applications": {
"gecko": {
"id": "discover@mix.com",
"strict_min_version": "52.0"
}
},
"permissions": [
"tabs",
"cookies",
"<all_urls>",
"storage"
],
"browser_action": {
"default_icon": {
"32" : "asset/Logo-128.png"
},
"default_title": "StumbleBar by StumbleUpon"
},
"background": {
"persistent": true,
"scripts": [
"guid.js",
"polyfill.js",
"utils.js",
"config.js",
"error.js",
"cache.js",
"cookie.js",
"api_request.js",
"api.js",
"contactlist.js",
"conversation.js",
"stumbleuponapi.js",
"page.js",
"toolbarevent.js"
]
}
}