Rapid Links

Rapid Links

Quickly Launch Your Favorite Websites or URLs Using Keyboard Shortcuts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Rapid Links",
  "short_name": "Rapid Links",
  "description": "Quickly Launch Your Favorite Websites or URLs Using Keyboard Shortcuts",
  "version": "1.1",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icons/icon16.png",
    "default_title": "Launch URLs with keyboard shortcuts"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "commands": {
    "launchFirstUrl": {
      "suggested_key": {
        "default": "Alt+V",
        "mac": "Alt+V"
      },
      "description": "Launch the first URL stored in chrome storage on pressing ALT+V"
    },
    "launchSecondUrl": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B"
      },
      "description": "Launch the second URL stored in chrome storage on pressing ALT+B"
    },
    "launchThirdUrl": {
      "suggested_key": {
        "default": "Alt+N",
        "mac": "Alt+N"
      },
      "description": "Launch the third URL stored in chrome storage on pressing ALT+N"
    }
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}