Customize the new tabs and windows on your browser to best suit your needs
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": "Navigator",
"version": "1.0.2",
"icons": {
"16": "./croopninja16.png",
"48": "./croopninja48.png",
"128": "./croopninja48.png"
},
"description": "Customize the new tabs and windows on your browser to best suit your needs",
"permissions": [
"activeTab",
"storage",
"scripting",
"tabs",
"topSites",
"bookmarks",
"history"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "./croopninja16.png",
"48": "./croopninja48.png",
"128": "./croopninja48.png"
}
},
"host_permissions": [
"*://*/*",
"<all_urls>"
],
"background": {
"service_worker": "background.bundle.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.bundle.js"
],
"css": [
"styles.css"
]
}
],
"web_accessible_resources": [
{
"resources": [
"panel.html",
"panel.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';",
"sandbox": "sandbox allow-scripts allow-forms"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
}
}