Translit

Translit

On the fly conversion from latin to cyrillic for text widgets.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Translit",
  "version": "7",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "16": "images/icon.png",
    "48": "images/icon48.png"
  },
  "options_page": "html/options.html",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end",
      "js": [
        "js/constants.js",
        "js/data.js",
        "js/kirill.js"
      ]
    }
  ],
  "permissions": []
}