keycodes

keycodes

Press the keyboard key to quickly get the corresponding keycode. simple, convenient, fast.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.1",
  "description": "__MSG_appDescription__",
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "icons": {
    "16": "./img/logo_16.png",
    "19": "./img/logo_19.png",
    "32": "./img/logo_32.png",
    "48": "./img/logo_48.png",
    "128": "./img/logo_128.png"
  },
  "browser_action": {
    "default_popup": "keycodes.html"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "./js/background.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/content.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "manifest_version": 2
}