Files
guide/extension/manifest.json

39 lines
724 B
JSON

{
"action": {
"default_title": "Terminator Bridge"
},
"background": {
"service_worker": "worker.js",
"type": "module"
},
"content_scripts": [
{
"js": [
"content.js"
],
"match_about_blank": true,
"matches": [
"<all_urls>"
],
"run_at": "document_start",
"world": "MAIN"
}
],
"description": "Bridge to evaluate JS in the active tab via a local WebSocket (no DevTools UI).",
"host_permissions": [
"<all_urls>"
],
"manifest_version": 3,
"name": "Terminator Bridge",
"permissions": [
"debugger",
"tabs",
"scripting",
"activeTab",
"webNavigation",
"alarms",
"storage"
],
"version": "0.24.0"
}