Inspect and view changes in Remove Current Tab Cookies source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Remove Current Tab Cookies",
"description": "Remove cookies exclusively within the current tab top level domain. Whitelist functionality with regular expressions.",
"version": "1.6",
"author": "Konstantin Glukhov",
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"permissions": [
"cookies",
"tabs",
"storage"
],
"host_permissions": [
"<all_urls>"
],
"action": {
"default_popup": "popup.html",
"default_title": "Remove Current Tab Cookies"
},
"icons": {
"16": "Cookie-16.png",
"48": "Cookie-48.png",
"128": "Cookie-128.png"
}
}