Umlauter: automatically add Umlauts

Umlauter: automatically add Umlauts

Corrects common German transcriptions like ue to the proper Umlaut ü.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.0.11",
  "manifest_version": 2,
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "homepage_url": "https://github.com/jaflo/umlauter",
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_title": "Umlauter"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "src/inject.js"
      ],
      "all_frames": true
    }
  ]
}