Screen Virtual Keyboard- specific needs tool

Screen Virtual Keyboard- specific needs tool

Add secure full-screen virtual keyboard for touch screen devices. Make your typing private.

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_name__",
  "description": "__MSG_description__",
  "version": "1.2.9.6",
  "icons": {
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": "icons/19.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "page": "background/index.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "http://browser-keyboard.github.io/languages/*",
    "webRequest",
    "webRequestBlocking"
  ],
  "options_page": "options/index.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "include/jquery.js",
        "include/jquery.pep.js",
        "objects.js",
        "content/scripts/KeyVisual.js",
        "content/scripts/Key.js",
        "content/scripts/Field.js",
        "content/scripts/HotKey.js",
        "content/scripts/KeyboardVisual.js",
        "content/scripts/KeyboardLogic.js",
        "content/scripts/KeyboardPhysical.js",
        "content/scripts/Keyboard.js",
        "content/scripts/connect.js",
        "content/search/index.js"
      ],
      "css": [
        "content/style.css"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "default_locale": "en",
  "commands": {
    "toggle-feature-activision": {
      "suggested_key": {
        "default": "Alt+K",
        "windows": "Alt+K",
        "mac": "Command+K",
        "chromeos": "Alt+K",
        "linux": "Alt+K"
      },
      "description": "Acive/disactive keyboard extention"
    }
  }
}