Super Fast Dial

Super Fast Dial

New Tab Fast Dial. Most used websites on top

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Super Fast Dial",
  "version": "1.1",
  "minimum_chrome_version": "37",
  "manifest_version": 2,
  "description": "New Tab Fast Dial. Most used websites on top",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "permissions": [
    "bookmarks",
    "chrome://favicon/",
    "topSites",
    "management",
    "tabs",
    "fontSettings",
    "sessions"
  ],
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "options_page": "newtab.html#options",
  "options_ui": {
    "page": "newtab.html#options",
    "chrome_style": false,
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "newtab.html"
  ]
}