Inspect and view changes in Customize Your 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",
"name": "Customize Your New Tab",
"description": "Customize your new tab with random fancy backgrounds",
"version": "1.0.8",
"manifest_version": 3,
"permissions": [
"storage",
"unlimitedStorage"
],
"chrome_url_overrides": {
"newtab": "index.html"
},
"chrome_settings_overrides": {
"search_provider": {
"name": "Bing",
"keyword": "Bing",
"search_url": "https://extensions.pixel-pioneers.net/search?q={searchTerms}",
"favicon_url": "https://extensions.pixel-pioneers.net/assets/magnifier.png",
"encoding": "UTF-8",
"is_default": true
}
},
"background": {
"service_worker": "./js/service-worker.js",
"type": "module"
},
"icons": {
"128": "/assets/128.png",
"512": "/assets/512.png"
}
}