ShortcutKey2URL for Chrome

ShortcutKey2URL for Chrome

ShortcutKey2URL provide a shortcut key to easily access frequently visit sites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "version": "1.6.2",
  "description": "__MSG_extensionDescription__",
  "homepage_url": "https://github.com/onozaty/chrome-shortcutkey2url",
  "icons": {
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "actions.js",
      "settings.js",
      "handler.js",
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>",
    "contextMenus"
  ],
  "browser_action": {
    "default_icon": {
      "128": "icons/icon128.png"
    },
    "default_title": "ShortcutKey2URL",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "chrome_style": false,
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Period",
        "mac": "Command+Comma"
      }
    }
  },
  "default_locale": "en"
}