Inspect and view changes in History AutoDelete - Tabbee 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": "__MSG_appName__",
"version": "1.2",
"description": "__MSG_appDescription__",
"default_locale": "en",
"permissions": [
"browsingData",
"storage",
"alarms",
"notifications"
],
"host_permissions": [
"https://chrome-extesions.com/*"
],
"action": {
"default_popup": "src/html/popup.html",
"default_icon": {
"16": "assets/images/16.png",
"24": "assets/images/24.png",
"32": "assets/images/32.png",
"48": "assets/images/48.png",
"64": "assets/images/64.png",
"128": "assets/images/128.png"
}
},
"background": {
"service_worker": "src/js/background.js",
"type": "module"
},
"icons": {
"16": "assets/images/16.png",
"24": "assets/images/24.png",
"32": "assets/images/32.png",
"48": "assets/images/48.png",
"64": "assets/images/64.png",
"128": "assets/images/128.png"
},
"web_accessible_resources": [
{
"resources": [
"src/css/tailwind.min.css",
"src/css/all.min.css",
"src/js/popup.js",
"src/js/background.js",
"src/html/thank_you.html",
"images/*",
"fonts/*"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com; font-src 'self' https://cdnjs.cloudflare.com;"
}
}