MyLipi

MyLipi

Convert any Indian alphabet into another.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MyLipi",
  "description": "Convert any Indian alphabet into another.",
  "version": "1.3",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Change target alphabet to other than Hindi"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "<all_urls>",
    "http://*/*",
    "https://*/*",
    "https://ajax.googleapis.com/"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "LipiMap.js",
        "HindiMap.js",
        "EnglishMap.js",
        "GurmukhiMap.js",
        "TeluguMap.js",
        "BanglaMap.js",
        "GujaratiMap.js",
        "KannadaMap.js",
        "OriyaMap.js",
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ]
}