{ "manifest_version": 3, "name": "TMWD CDP Bridge", "version": "2.0", "description": "Cookie viewer + CDP bridge", "permissions": [ "cookies", "tabs", "activeTab", "debugger", "scripting", "alarms", "declarativeNetRequest" ], "host_permissions": [""], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [""], "js": ["disable_dialogs.js"], "run_at": "document_start", "all_frames": true, "world": "MAIN" }, { "matches": [""], "js": ["config.js", "content.js"], "run_at": "document_idle", "all_frames": true } ], "action": { "default_popup": "popup.html", "default_title": "TMWD CDP Bridge" } }