rename cookie_grabber -> tmwd_cdp_bridge (CDP bridge extension)
This commit is contained in:
28
assets/tmwd_cdp_bridge/manifest.json
Normal file
28
assets/tmwd_cdp_bridge/manifest.json
Normal 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"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user