deCloudflare/addon_firefox/bcma/manifest.json

38 lines
788 B
JSON
Raw Normal View History

2019-05-05 07:10:27 -04:00
{
"manifest_version": 2,
2019-05-05 22:29:02 -04:00
"name": "Are links vulnerable to MITM attack?",
"description": "Scan FQDN using Searxes' API",
"version": "1.0.5",
"homepage_url": "https://notabug.org/themusicgod1/cloudflare-tor",
"author": "Maslin Bossé",
2019-05-05 07:10:27 -04:00
"permissions": [
2019-05-05 22:29:02 -04:00
"storage",
"unlimitedStorage"
2019-05-05 07:10:27 -04:00
],
"icons": {
2019-05-05 22:29:02 -04:00
"32": "icons/32.png"
2019-05-05 07:10:27 -04:00
},
"background": {
"scripts": [
2019-05-05 22:29:02 -04:00
"bg.js"
2019-05-05 07:10:27 -04:00
]
},
2019-05-05 22:29:02 -04:00
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"cs.js"
],
"run_at": "document_end"
2019-05-05 07:10:27 -04:00
}
2019-05-05 22:29:02 -04:00
],
2019-05-05 07:10:27 -04:00
"applications": {
"gecko": {
2019-05-05 22:29:02 -04:00
"id": "ismitm@searxes.danwin1210.me",
"strict_min_version": "56.0"
2019-05-05 07:10:27 -04:00
}
}
}