summaryrefslogtreecommitdiffstats
path: root/addon_chrome/ismitmlink/manifest.json
blob: 2f924e19a5fe57d92bd12f4f2e1c5c25020a11db (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
{
   "manifest_version": 2,
   "name": "Are links vulnerable to MITM attack?",
   "version": "1.0.7",
   "minimum_chrome_version": "60",
   "homepage_url": "https://notabug.org/crimeflare/cloudflare-tor",
   "author": "Maslin Bossé",
   "incognito": "split",
   "permissions": [
      "storage",
      "unlimitedStorage"
   ],
   "icons": {
      "32": "icons/32.png"
   },
   "background": {
      "scripts": [
         "bg.js"
      ]
   },
   "content_scripts": [
      {
         "matches": [
            "http://*/*",
            "https://*/*"
         ],
         "js": [
            "cs.js"
         ],
         "run_at": "document_end"
      }
   ]
}