Speed Dial - Displays some selected bookmarks on a New Tab.
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": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.1",
"background": {
"scripts": [
"background/offboarding.js",
"background/onboarding.js",
"background/upboarding.js"
]
},
"chrome_url_overrides": {
"newtab": "pages/newtab.html"
},
"default_locale": "en",
"developer": {
"name": "Thomas Van Steenwinckel"
},
"homepage_url": "https://www.1234.pm/favesontabs/",
"icons": {
"50": "icons/50.png",
"100": "icons/100.png"
},
"options_ui": {
"page": "options/preferences.html",
"browser_style": true,
"chrome_style": true
},
"permissions": [
"bookmarks",
"storage"
]
}