Cyrillic 2 Latin

Cyrillic 2 Latin

On the fly Cyrilic to Latin characters transcoding

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cyrillic 2 Latin",
  "description": "On the fly Cyrilic to Latin characters transcoding",
  "version": "1.0.1",
  "icons": {
    "128": "chrome-icon-lg.png"
  },
  "web_accessible_resources": [
    "assets/vendor.map"
  ],
  "browser_action": {
    "default_icon": "chrome-icon.png",
    "default_popup": "index.html",
    "default_title": "C2L"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/vendor.js",
        "content-script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "bookmarks",
    "activeTab",
    "<all_urls>",
    "https://ajax.googleapis.com/"
  ]
}