This commit is contained in:
Your Name
2025-04-18 09:52:27 -04:00
parent f569bb2240
commit 066bb11814
54 changed files with 1714 additions and 469 deletions
+19 -15
View File
@@ -1,16 +1,20 @@
{
"manifest_version": 3,
"name": "Custom New Tab",
"version": "1.0.0",
"description": "Customizable new tab page with background and search",
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"permissions": [
"storage"
],
"icons": {
"128": "icon.png"
},
"incognito": "spanning"
}
"manifest_version": 3,
"name": "Custom New Tab",
"version": "0.0.1",
"description": "Customizable new tab page with background and search",
"chrome_url_overrides": {
"newtab": "frontend/utab.html"
},
"permissions": [
"storage"
],
"icons": {
"128": "icon.png"
},
"incognito": "split",
"background": {
"service_worker": "worker/main.js",
"type": "module"
}
}