Google Input Tools

Google Input Tools

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

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_inputtool_title__",
  "description": "__MSG_inputtool_description__",
  "default_locale": "en",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": {
      "38": "image/producticon_48px_active.png"
    },
    "default_title": "__MSG_inputtool_title__",
    "default_popup": "popup.html"
  },
  "minimum_chrome_version": "31",
  "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"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "chext_loader.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "*"
  ],
  "options_page": "options.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs",
    "webNavigation"
  ],
  "commands": {
    "toggle": {
      "suggested_key": {
        "default": "Alt+Shift+T"
      },
      "description": "__MSG_toggle_input_tool__"
    },
    "next": {
      "suggested_key": {
        "default": "Alt+Shift+N"
      },
      "description": "__MSG_select_next_input_tool__"
    },
    "revert": {
      "suggested_key": {
        "default": "Alt+Shift+R"
      },
      "description": "__MSG_revert_last_input_tool__"
    }
  },
  "version": "10.2.0.4",
  "devtools_page": "devtools.html",
  "manifest_version": 2
}