Make your new tab page a true home for your work and free time. Speed Dial 2 is a new tab page extension with easy access to your favorite websites.
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": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"homepage_url": "https://www.speeddial2.com",
"description": "__MSG_appDescription__",
"default_locale": "en",
"permissions": [
"topSites",
"tabs",
"unlimitedStorage",
"storage",
"contextMenus",
"alarms"
],
"host_permissions": [
"<all_urls>",
"*://*/*"
],
"optional_permissions": [
"sessions",
"bookmarks"
],
"icons": {
"16": "icons/16.png",
"48": "icons/48.png",
"128": "icons/128.png"
},
"background": {
"scripts": [
"js/background.js"
]
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'; img-src * data:"
},
"action": {
"default_popup": "popup.html",
"default_title": "__MSG_appName__",
"default_icon": {
"19": "icons/19.png",
"38": "icons/38.png"
}
},
"version": "3.7.7",
"chrome_url_overrides": {
"newtab": "override.html"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "60.0"
}
}
}