-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
45 lines (38 loc) · 1005 Bytes
/
manifest.json
File metadata and controls
45 lines (38 loc) · 1005 Bytes
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
39
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "CBX",
"description": "This extension is to detect multiple attacks like XSS, iFrame Detection.",
"version": "1.0",
"page_action": {
"default_icon": "new_icon.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": ["*://*/*","<all_urls>"],
"run_at": "document_start",
"js": ["my_script.js","tabnabbing/resemble.js","tabnabbing/try.js"],
"all_frames": true
}
],
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"permissions": [
"webRequest",
"webRequestBlocking",
"<all_urls>",
"notifications",
"storage",
"activeTab",
"tabs",
"tabCapture",
"*://*/*"
],
"background": {
"scripts": ["background.js","tabnabbing/resemble.js","tabnabbing/try.js","tabnabbing/logic.js","pcs.js"],
"persistent": true
}
}