wext-httpspluschecker/manifest.json

29 lines
566 B
JSON
Raw Permalink Normal View History

2018-05-16 18:47:22 +02:00
{
"manifest_version": 2,
"name": "HTTPS+ Checker",
2018-07-04 18:20:40 +02:00
"version": "0.0.3",
2018-05-16 18:47:22 +02:00
"description": "Verification of security mechanisms complementary to HTTPS",
"permissions": [
"tabs",
2018-07-04 18:20:40 +02:00
"storage",
2018-05-16 18:47:22 +02:00
"webRequest",
"<all_urls>"
],
"browser_action": {
"default_title": "HTTPS+ Checker",
"default_icon": {
"48": "icon_x48.png",
"96": "icon_x96.png"
},
"default_popup": "popup/index.html"
},
"icons": {
"48": "icon_x48.png",
"96": "icon_x96.png"
2018-07-04 18:20:40 +02:00
},
"options_ui": {
"page": "settings/options.html"
2018-05-16 18:47:22 +02:00
}
}