IMEチェッカー

IME入力モード(ローマ字/かな入力)を、入力欄の色とメッセージで通知します。

What is IMEチェッカー?

IMEチェッカー is a Chrome extension developed by pub, and its main feature is "IME入力モード(ローマ字/かな入力)を、入力欄の色とメッセージで通知します。".

Extension Screenshots

screenshot
screenshot

Download IMEチェッカー Extension CRX File

Download IMEチェッカー extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        以下の入力欄について、IME入力モードの状態を通知します。
・単一行入力欄 (input type : text/search/指定無し)
・複数行入力欄 (textarea)
・編集可能要素 (contenteditable : true)

※
・入力モードが「ローマ字」の場合、入力欄が薄い赤になります。
・入力モードが「かな」の場合、入力欄が白になります。

どちらの場合も入力欄が未入力の時に、入力欄にメッセージを表示します。
※IMEチェッカーのアイコンでも「A」「あ」を表示して状態を通知します。

Webページの外(アドレスバー等)で入力モードを変更した場合、Webページ内で入力した時点で入力モードの変更が反映されます。                    

Extension Basic Information

Name IMEチェッカー IMEチェッカー
ID pigohhboacmbojmlojecallmjfgpipne
Official URL https://chromewebstore.google.com/detail/ime%E3%83%81%E3%82%A7%E3%83%83%E3%82%AB%E3%83%BC/pigohhboacmbojmlojecallmjfgpipne
Description IME入力モード(ローマ字/かな入力)を、入力欄の色とメッセージで通知します。
File Size 56.08 KB
Installation Count 174
Current Version 0.0.7
Last Updated 2017-05-30
Publish Date 2017-05-30
Rating 2.00/5 Total 1 Ratings
Developer pub
Email [email protected]
Payment Type free
Supported Languages ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.7",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "ja",
    "icons": {
        "16": "img\/a-en_16x16.png",
        "128": "img\/icon_128_96_16.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/content.css"
            ],
            "js": [
                "lib\/jquery\/jquery-1.12.4.min.js",
                "js\/share.js",
                "js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "js\/share.js",
            "lib\/analytics.js",
            "js\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "IME\u30c1\u30a7\u30c3\u30ab\u30fc",
        "default_popup": "html\/popup.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}