Unlock Keyboard & Mouse

Unlock Keyboard & Mouse

Enable Right click, Search, CTRL anyhwere! (Selection Drag Drop Cut Copy Paste Clipboard alt tab shift CTRL C Z S F T W A X STRG)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Unlock Keyboard & Mouse",
  "description": "__MSG_description__",
  "version": "2.1",
  "default_locale": "en",
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "options-page/index.html"
  },
  "options_page": "options-page/index.html",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "content-scripts.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "optional_permissions": [
    "downloads"
  ],
  "permissions": [
    "activeTab",
    "storage"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{abc0b714-1e89-43b7-b673-0fee801613f1}"
    }
  }
}