-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.json
More file actions
18 lines (18 loc) · 1.03 KB
/
manifest.json
File metadata and controls
18 lines (18 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"manifest_version": 3,
"name": "PenScope",
"version": "6.3.0",
"description": "Bug bounty toolkit in Chrome — Hunt Mode (autonomous attacker) + Workbench (Repeater/Intruder/Encoder/Diff/SiteMap/AuthMatrix) + 36 probe attacks + chain correlator + Red/Blue/Classic modes. Free, faster than Burp.",
"permissions": ["webRequest","webNavigation","activeTab","scripting","tabs","cookies","debugger","notifications","alarms","storage"],
"host_permissions": ["<all_urls>"],
"background": { "service_worker": "src/background.js", "type": "module" },
"action": {
"default_popup": "popup.html",
"default_icon": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" }
},
"content_scripts": [{ "matches": ["<all_urls>"], "js": ["content.js"], "run_at": "document_idle" }],
"icons": { "16": "icons/icon16.png", "48": "icons/icon48.png", "128": "icons/icon128.png" },
"web_accessible_resources": [
{ "resources": ["workbench.html","workbench.js","hunt.html","hunt.js"], "matches": ["<all_urls>"] }
]
}