-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmanifest.json
More file actions
executable file
·30 lines (30 loc) · 844 Bytes
/
manifest.json
File metadata and controls
executable file
·30 lines (30 loc) · 844 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
{
"manifest_version": 2,
"name": "jsBugBountyHelper",
"version": "1.0",
"description": "This tool is studied to help ethical hackers to find vulnerable points in webpage's javascript",
"icons": {
"48": "icons/border-48.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"jQuery/css/bootstrap.min.css"
],
"js": [
"jQuery/js/jquery-3.6.0.js",
"jQuery/js/bootstrap.bundle.min.js",
"searchElement.js",
"payload.js",
"mapper.js",
"dictionary.js",
"laravelAccessibleUrls.js",
"jsBugHuntingHelper.js",
"startExtension.js"
]
}
]
}