Inspect and view changes in CookiesClerk 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",
"name": "CookiesClerk",
"description": "A plugin that helps you manage multiple accounts on the same site ",
"version": "1.1.0.0",
"version_name": "1.1.0",
"manifest_version": 3,
"default_locale": "en",
"action": {
"default_popup": "src/popup/index.html"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"host_permissions": [
"*://*/*"
],
"icons": {
"128": "src/assets/icon.png"
},
"options_page": "src/options/index.html",
"permissions": [
"cookies",
"storage",
"activeTab",
"tabs",
"scripting",
"browsingData"
],
"web_accessible_resources": [
{
"matches": [
"*://*/*"
],
"resources": [
"src/content-script/index.ts",
"src/content-script/iframe/index.html"
],
"use_dynamic_url": false
}
]
}