Indic OCR

Indic OCR

Highlight Indic/English text in images and transliterate them

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Indic OCR",
  "manifest_version": 2,
  "version": "0.1",
  "description": "Highlight Indic/English text in images and transliterate them ",
  "homepage_url": "http://indic-ocr.github.io",
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentscript.js"
      ],
      "css": [
        "speech-bubble.css"
      ]
    }
  ],
  "icons": {
    "32": "indicocr32.png",
    "64": "indicocr64.png",
    "128": "indicocr128.png"
  },
  "browser_action": {
    "default_icon": "indicocr32.png"
  },
  "background": {
    "scripts": [
      "bg.js",
      "contextmenu.js"
    ]
  },
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "storage"
  ]
}