A minimalist new tab page
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": "Simple New Tab ",
"description": "A minimalist new tab page",
"version": "1.4.1",
"action": {
"default_popup": "popup.html"
},
"chrome_url_overrides": {
"newtab": "index.html"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"icons": {
"128": "src/assets/icon.png"
},
"permissions": [
"storage"
]
}