Inspect and view changes in New Tab & Toolbox 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"action": {
"default_popup": "popup.html",
"default_title": "NTSP"
},
"background": {
"service_worker": "background.js"
},
"chrome_url_overrides": {
"newtab": "newtab.html"
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content-id.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_idle"
},
{
"all_frames": true,
"js": [
"content-st.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_start"
},
{
"all_frames": true,
"js": [
"content-ag.js"
],
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"run_at": "document_start",
"world": "MAIN"
}
],
"description": "Unleash your Web Browser's potential!",
"homepage_url": "https://sermak.ca",
"host_permissions": [
"http://*/*",
"https://*/*",
"file:///*"
],
"icons": {
"128": "newtab.png"
},
"incognito": "split",
"manifest_version": 3,
"name": "New Tab & Toolbox",
"options_page": "options.html",
"permissions": [
"cookies",
"declarativeNetRequest",
"tabs",
"contextMenus",
"storage",
"offscreen",
"search"
],
"short_name": "Toolbox",
"version": "43.5",
"web_accessible_resources": [
{
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"resources": [
"*.html",
"*.svg"
]
}
]
}