IMEチェッカー

IMEチェッカー

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

Additional files are visible only to premium users

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チェッカー",
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}