Google Input Tools for Edge

Google Input Tools for Edge

Input Tools lets you type in the language of your choice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "1.30.1",
  "default_locale": "en",
  "description": "__MSG_inputtool_description__",
  "name": "__MSG_inputtool_title__",
  "browser_action": {
    "default_icon": {
      "38": "image/producticon_48px_active.png"
    },
    "default_popup": "popup.html",
    "default_title": "__MSG_inputtool_title__"
  },
  "commands": {
    "next": {
      "description": "__MSG_select_next_input_tool__",
      "suggested_key": {
        "default": "Alt+Shift+N"
      }
    },
    "revert": {
      "description": "__MSG_revert_last_input_tool__",
      "suggested_key": {
        "default": "Alt+Shift+R"
      }
    },
    "toggle": {
      "description": "__MSG_toggle_input_tool__",
      "suggested_key": {
        "default": "Alt+Shift+T"
      }
    }
  },
  "content_scripts": [
    {
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "chext_loader.js",
        "browser-specific/view.js",
        "browser-specific/tools.js",
        "browser-specific/firefox.js",
        "browser-specific/edge.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "js": [
        "chext_inject.js"
      ],
      "matches": [
        "https://www.googleapis.com/auth/imesync*"
      ]
    }
  ],
  "background": {
    "page": "background.html"
  },
  "icons": {
    "16": "image/producticon_48px_active.png",
    "32": "image/producticon_48px_active.png",
    "48": "image/producticon_48px_active.png",
    "128": "image/producticon_48px_active.png"
  },
  "options_page": "options.html",
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage",
    "webNavigation",
    "webRequest",
    "webRequestBlocking",
    "unlimitedStorage",
    "https://dl.google.com/"
  ],
  "content_security_policy": "script-src 'self'  'unsafe-eval'; object-src 'self';",
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    "*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}