CrownX make your old chrome start home page to more usefull and beautifull by Adding additional features
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": "CrownX NewTab Android like home page",
"description": "CrownX make your old chrome start home page to more usefull and beautifull by Adding additional features",
"version": "1.3.0",
"icons": {
"64": "img/crownx-icon-64.png",
"128": "img/crownx-icon-128.png",
"256": "img/crownx-icon-128.png",
"512": "crownx-icon-512.png"
},
"action": {
"default_icon": "img/crownx-icon-64.png",
"default_title": "CrownX",
"default_popup": "popup.html"
},
"background": {
"service_worker": "sw.js"
},
"permissions": [
"contextMenus",
"tabs",
"bookmarks",
"favicon"
],
"chrome_url_overrides": {
"newtab": "index.html"
},
"web_accessible_resources": [
{
"resources": [
"_favicon/*"
],
"matches": [
"<all_urls>"
],
"extension_ids": [
"*"
]
}
]
}