ImageToText

ImageToText

Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ImageToText",
  "description": "Copy text from images just like you do with normal text content. Right click it, and 'copy image text'.",
  "version": "0.0.1",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "functions.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "eventpage.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon_tool_bar.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "clipboardWrite",
    "contextMenus",
    "notifications"
  ]
}