Speed Dial

Speed Dial

Speed Dial changes standard page to the new tab page with your saved bookmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Alexander",
  "background": {
    "service_worker": "js/bg.js"
  },
  "chrome_url_overrides": {
    "newtab": "pages/newtab.html"
  },
  "default_locale": "en",
  "description": "__MSG_chrome_extension_description__",
  "icons": {
    "128": "img/128.png",
    "256": "img/256.png"
  },
  "manifest_version": 3,
  "name": "__MSG_chrome_extension_name__",
  "permissions": [
    "tabs",
    "unlimitedStorage",
    "contextMenus",
    "storage",
    "favicon"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "short_name": "__MSG_chrome_extension_short_name__",
  "version": "1.1.9"
}