Files
yaklang-chrome-extension/public/manifest.json
T
2024-05-15 14:43:04 +08:00

43 lines
848 B
JSON

{
"manifest_version": 3,
"name": "Yakit Chrome Endpoint",
"version": "1.0",
"description": "A Endpoint for Yakit MITM or more",
"action": {
"default_popup": "index.html",
"default_icon": {
"16": "/images/icon16.png",
"48": "/images/icon48.png",
"128": "/images/icon128.png"
}
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"permissions": [
"webNavigation",
"activeTab",
"scripting",
"tabs",
"proxy",
"storage",
"webRequest"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": ["inject.js"],
"matches": ["<all_urls>"],
"use_dynamic_url": true
}
],
"icons": {
"16": "/images/icon16.png",
"48": "/images/icon48.png",
"128": "/images/icon128.png"
}
}