Random Link Opener

Random Link Opener

Bookmark Links and open them when you need it, using a keyboard shortcut.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Random Link Opener",
  "version": "1.2.2",
  "description": "Bookmark Links and open them when you need it, using a keyboard shortcut.",
  "author": "AlanD20 <[email protected]>",
  "commands": {
    "_execute_action": {
      "suggested_key": "Ctrl+Shift+Y",
      "description": "Show Extension Popup"
    },
    "BOOKMARK_CURRENT_TAB": {
      "suggested_key": "Ctrl+Shift+Period",
      "description": "Save Currently Opened Tab"
    },
    "BOOKMARK_ALL_TAB": {
      "description": "Save All Opened Tabs"
    },
    "OPEN_RANDOM_BOOKMARK": {
      "suggested_key": "Ctrl+Shift+Comma",
      "description": "Open Random Bookmark"
    },
    "OPEN_LATEST_BOOKMARK": {
      "suggested_key": "Ctrl+Shift+L",
      "description": "Open Latest Bookmark"
    }
  },
  "icons": {
    "16": "src/assets/icons/icons8-16.png",
    "32": "src/assets/icons/icons8-32.png",
    "72": "src/assets/icons/icons8-72.png",
    "96": "src/assets/icons/icons8-96.png",
    "128": "src/assets/icons/icons8-128.png"
  },
  "action": {
    "default_icons": {
      "16": "src/assets/icons/icons8-16.png",
      "32": "src/assets/icons/icons8-32.png",
      "72": "src/assets/icons/icons8-72.png",
      "96": "src/assets/icons/icons8-96.png",
      "128": "src/assets/icons/icons8-128.png"
    },
    "default_title": "Random Link Opener",
    "default_popup": "index.html"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "notifications"
  ],
  "homepage_url": "https://github.com/AlanD20/random-link-openers",
  "offline_enabled": true,
  "options_page": "index.html",
  "options_ui": {
    "page": "index.html#/settings"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  }
}