0
0
mirror of https://codeberg.org/crimeflare/cloudflare-tor synced 2024-09-20 09:01:08 +00:00
cloudflare-tor/addon_firefox/bcma/manifest.json

38 lines
788 B
JSON
Raw Normal View History

2019-05-05 11:10:27 +00:00
{
"manifest_version": 2,
2019-05-06 02:29:02 +00: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 11:10:27 +00:00
"permissions": [
2019-05-06 02:29:02 +00:00
"storage",
"unlimitedStorage"
2019-05-05 11:10:27 +00:00
],
"icons": {
2019-05-06 02:29:02 +00:00
"32": "icons/32.png"
2019-05-05 11:10:27 +00:00
},
"background": {
"scripts": [
2019-05-06 02:29:02 +00:00
"bg.js"
2019-05-05 11:10:27 +00:00
]
},
2019-05-06 02:29:02 +00:00
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"js": [
"cs.js"
],
"run_at": "document_end"
2019-05-05 11:10:27 +00:00
}
2019-05-06 02:29:02 +00:00
],
2019-05-05 11:10:27 +00:00
"applications": {
"gecko": {
2019-05-06 02:29:02 +00:00
"id": "ismitm@searxes.danwin1210.me",
"strict_min_version": "56.0"
2019-05-05 11:10:27 +00:00
}
}
}