summaryrefslogtreecommitdiffstats
path: root/addon_firefox/ismitmlink/manifest.json
blob: 62a995ee2f133ec3023d7baeb6e04824f20721e2 (plain)
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
{
   "manifest_version": 2,
   "name": "Are links vulnerable to MITM attack?",
   "description": "Scan FQDN using Searxes' API",
   "version": "1.0.6",
   "homepage_url": "https://notabug.org/crimeflare/cloudflare-tor",
   "author": "Maslin Bossé",
   "permissions": [
      "storage",
      "unlimitedStorage"
   ],
   "icons": {
      "32": "icons/32.png"
   },
   "background": {
      "scripts": [
         "bg.js"
      ]
   },
   "content_scripts": [
      {
         "matches": [
            "http://*/*",
            "https://*/*"
         ],
         "js": [
            "cs.js"
         ],
         "run_at": "document_end"
      }
   ],
   "applications": {
      "gecko": {
         "id": "ismitm@searxes.danwin1210.me",
         "strict_min_version": "56.0"
      }
   }
}