rename cookie_grabber -> tmwd_cdp_bridge (CDP bridge extension)

This commit is contained in:
Liang Jiaqing
2026-03-04 11:15:32 +08:00
parent dcf65d72c7
commit 0ab90af250
11 changed files with 178 additions and 153 deletions

View File

@@ -0,0 +1,28 @@
{
"manifest_version": 3,
"name": "Cookie Grabber",
"version": "2.0",
"description": "Cookie viewer + CDP bridge",
"permissions": [
"cookies",
"tabs",
"activeTab",
"debugger"
],
"host_permissions": ["<all_urls>"],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"],
"run_at": "document_idle",
"all_frames": true
}
],
"action": {
"default_popup": "popup.html",
"default_title": "Cookie Grabber"
}
}