Bookmarks HotList

Bookmarks HotList

A Speed Dial in your toolbar, with easy set-up and keyboard shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "4.0.0",
  "name": "Bookmarks HotList",
  "description": "A Speed Dial in your toolbar, with easy set-up and keyboard shortcuts",
  "short_name": "HotList",
  "minimum_chrome_version": "92",
  "action": {
    "default_title": "Bookmarks HotList",
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "19": "icons/icon19.png",
      "32": "icons/icon32.png",
      "38": "icons/icon38.png"
    }
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+B",
        "mac": "Command+B",
        "chromeos": "Alt+B",
        "linux": "Alt+B"
      }
    }
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "bookmarks",
    "favicon",
    "activeTab",
    "contextMenus",
    "storage"
  ],
  "background": {
    "service_worker": "sw.js"
  },
  "options_ui": {
    "page": "html/options.html"
  }
}