yet another speed dial

yet another speed dial

a modern speed dial for chrome, edge, and firefox

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "2.5.5",
  "author": "[email protected]",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "64": "icons/icon64.png",
    "96": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "bookmarks",
    "contextMenus",
    "storage",
    "unlimitedStorage",
    "activeTab",
    "tabs",
    "<all_urls>"
  ],
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "background": {
    "scripts": [
      "js/lib/browser-polyfill.min.js",
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/action-icon16.png",
      "24": "icons/action-icon24.png",
      "32": "icons/action-icon32.png"
    },
    "default_title": "Add to Speed Dial"
  },
  "web_accessible_resources": [
    "icons/icon128.png"
  ]
}