Inspect and view changes in Clear New Tab 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,
"version": "6.10.0",
"default_locale": "en",
"icons": {
"16": "icon16.png",
"24": "icon24.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"96": "icon96.png",
"128": "icon128.png"
},
"action": {
"default_icon": {
"16": "icon_colored16.png",
"24": "icon_colored24.png",
"32": "icon_colored32.png",
"48": "icon_colored48.png",
"64": "icon_colored64.png",
"96": "icon_colored96.png",
"128": "icon_colored128.png"
}
},
"name": "Clear New Tab",
"description": "__MSG_description__",
"background": {
"service_worker": "background.js"
},
"options_ui": {
"page": "settings.html",
"open_in_tab": true
},
"chrome_url_overrides": {
"newtab": "new_tab.html"
},
"sandbox": {
"pages": [
"sandbox.html"
]
},
"permissions": [
"storage",
"alarms",
"management",
"offscreen"
],
"optional_permissions": [
"clipboardRead"
],
"host_permissions": [
"https://clients2.google.com/*",
"https://clients2.googleusercontent.com/*"
],
"content_security_policy": {
"sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals allow-top-navigation; script-src 'self' 'unsafe-inline'; child-src 'self'"
}
}