-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 929 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
{
"manifest_version": 2,
"name": "Broken Resources Finder",
"version": "1.1",
"author": "Bastian Dupps",
"description": "The scope of the Broken Resources Finder WebExtension is to detect unavailable web resources like images or stylesheets by scanning the currently visited website and its embedded stylesheets.",
"homepage_url": "https://github.com/dupps/broken-resources-finder",
"applications": {
"gecko": {
"id": "broken-resources-finder@dupps.it"
}
},
"icons": {
"48": "icons/broken_image_48.png",
"96": "icons/broken_image_96.png"
},
"permissions": [
"webRequest",
"<all_urls>",
"activeTab",
"tabs"
],
"browser_action": {
"default_icon": "icons/broken_image_36.png",
"default_title": "Broken Resources Finder",
"default_popup": "popup/popup.html"
},
"background": {
"scripts": [
"background_scripts/resource_checker.js"
]
}
}