Speed Dial Dogs

Speed Dial Dogs

Speed Dial allows you to add and manage bookmarks in the New Tab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Speed Dial Dogs",
  "version": "3.0.0",
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "48": "img/48.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "history",
    "storage",
    "unlimitedStorage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "service_worker.js"
  },
  "chrome_url_overrides": {
    "newtab": "pages/newtab.html"
  },
  "action": {
    "default_icon": "img/64.png"
  },
  "content_security_policy": {}
}