Varnam

Varnam

Varnam is a transliteration based input system for indian languages. Varnam enables indic input on all the webpages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Varnam",
  "version": "2.1",
  "manifest_version": 2,
  "description": "Varnam is a transliteration based input system for indian languages. Varnam enables indic input on all the webpages",
  "homepage_url": "http://www.varnamproject.com/",
  "incognito": "split",
  "options_page": "settings.html",
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "24.png",
    "default_title": "Varnam"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "css/varnam.css"
      ],
      "js": [
        "js/jquery-1.8.2.min.js",
        "js/textinputs_jquery.js",
        "js/caret.js",
        "js/varnam.js"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "tabs",
    "http://*/",
    "https://*/",
    "http://www.varnamproject.com/*"
  ],
  "icons": {
    "16": "icon.png",
    "19": "19.png",
    "24": "24.png",
    "48": "48.png",
    "128": "128.png"
  },
  "web_accessible_resources": [
    "progress.gif"
  ]
}