warp

warp

Open frequently used bookmarks fast without a single mouse click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "warp",
  "description": "Open frequently used bookmarks fast without a single mouse click",
  "version": "1.19.0",
  "permissions": [
    "storage",
    "bookmarks",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background/index.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icons/icon_32.png",
    "default_popup": "popup/popup.html"
  },
  "options_page": "options/options.html",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+W",
        "mac": "Command+W",
        "chromeos": "Alt+W",
        "linux": "Alt+W"
      }
    }
  },
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "128": "icons/icon_128.png"
  },
  "homepage_url": "https://warp.vikian050194.dev"
}