Inspect and view changes in Custom 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
{
"manifest_version": 3,
"name": "Custom New Tab",
"version": "1.2.3",
"description": "自定义新标签页",
"icons": {
"16": "dist/icons/icon.svg",
"48": "dist/icons/icon.svg",
"128": "dist/icons/icon.svg"
},
"host_permissions": [
"*://*/*"
],
"permissions": [
"tabs",
"storage"
],
"chrome_url_overrides": {
"newtab": "dist/index.html"
},
"browser_specific_settings": {
"gecko": {
"id": "someoneonsmile@gmail.com"
}
}
}