- background.js: Add management API, auto-return for JS, refactor new tab capture - simphtml.py: Fix falsy return value bug, flatten return structure - agent_loop.py: Simplify UI icons - manifest.json: Add management permission - tools_schema: Optimize prompts for web tools - tmwebdriver_sop.md: Update documentation
39 lines
812 B
JSON
39 lines
812 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "TMWD CDP Bridge",
|
|
"version": "2.0",
|
|
"description": "Cookie viewer + CDP bridge",
|
|
"permissions": [
|
|
"cookies",
|
|
"tabs",
|
|
"activeTab",
|
|
"debugger",
|
|
"scripting",
|
|
"alarms",
|
|
"declarativeNetRequest",
|
|
"management"
|
|
],
|
|
"host_permissions": ["<all_urls>"],
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["disable_dialogs.js"],
|
|
"run_at": "document_start",
|
|
"all_frames": true,
|
|
"world": "MAIN"
|
|
},
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["config.js", "content.js"],
|
|
"run_at": "document_idle",
|
|
"all_frames": true
|
|
}
|
|
],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "TMWD CDP Bridge"
|
|
}
|
|
} |