File size: 622 Bytes
d3fcc5e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
{
  "manifest_version": 2,
  "name": "Spoof detect",
  "version": "0.0.1",
  "icons": {
    "48": "icons/48.png"
  },
  "description": "Try to detect website spoofing",
  "content_scripts": [
    {
      "matches": ["<all_urls>"],
      "js": ["detect.js", "observer.js"]
    }
  ],
  "background": {
    "scripts": ["background.js"]
  },
  "web_accessible_resources": [
    "forts/*.png",
    "pages/*.html"
  ],
  "browser_action": {
    "default_icon": "icons/48.png",
    "default_title": "Detect"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "activeTab",
    "tabs",
    "<all_urls>"
  ]
}