-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmanifest.json
42 lines (42 loc) · 1.08 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
{
"manifest_version": 2,
"name": "Chromebleed",
"description": "Displays a warning if the site you are browsing is affected by the Heartbleed bug",
"version": "2.2.0",
"permissions": [
"notifications",
"activeTab",
"tabs",
"<all_urls>"
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png",
"256": "icon256.png",
"512": "icon512.png"
},
"options_page":"options.html",
"background": {
"page": "background.html",
"js": "js/background.js"
},
"content_scripts": [{
"matches": ["http://*/*", "https://*/*"],
"include_globs": ["http://www.google.*/*", "https://www.google.*/*"],
"css": ["search/search.css"],
"js": ["search/jquery.js", "js/cached.js", "js/promise.min.js", "js/request.js", "search/search.js"]
}],
"browser_action": {
"default_icon": "icon48.png",
"default_popup": "popup.html",
"default_title": "Chromebleed 2.2.0",
"default_popup": "popup.html"
},
"web_accessible_resources": [
"logo.png",
"icon48.png",
"logo-err48.png",
"logo-ok48.png"
]
}