mirror of
https://github.com/yaklang/yaklang-chrome-extension.git
synced 2026-09-25 12:41:53 +08:00
29 lines
642 B
JSON
29 lines
642 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Yakit Chrome Endpoint",
|
|
"version": "1.0",
|
|
"description": "A Endpoint for Yakit MITM or more",
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_icon": {
|
|
"16": "/images/icon16.png",
|
|
"48": "/images/icon48.png",
|
|
"128": "/images/icon128.png"
|
|
}
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"permissions": ["activeTab", "scripting"],
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"icons": {
|
|
"16": "/images/icon16.png",
|
|
"48": "/images/icon48.png",
|
|
"128": "/images/icon128.png"
|
|
}
|
|
} |