OCRit

OCRit

Capture the page and receive text by OCR

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "OCRit",
  "description": "Capture the page and receive text by OCR",
  "version": "1.0.1",
  "permissions": [
    "tabs",
    "activeTab",
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "browser_action": {
    "default_title": "OCRit",
    "default_icon": "icon.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "capture_cs.js",
        "jquery-1.11.3.min.js",
        "html2canvas.js"
      ]
    }
  ]
}