UATranslit

UATranslit

Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "UATranslit",
  "version": "1.0",
  "description": "Transliterate from Latin (English) alphabet to Ukrainian as you type. Use F4 to switch to Ukrainian while in a text field.",
  "background": {
    "scripts": [
      "/code/utranslit.js"
    ]
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "/code/ContentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*"
  ]
}