asana.com Multi language IME problem patch

asana.com Multi language IME problem patch

This app resolve a problem in asana.com with MultiLanguage IME(like Japanese Google IME). To use this plugin, just keeping enable.

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_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.0.2",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.asana.com/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "https://app.asana.com/"
  ]
}