Text From PRO

Text From PRO

Copy text from images videos PDFs YouTube Google Books protected docs web pages. Copy, grab, extract text for best productivity.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_desc__",
  "version": "2.0.0.3",
  "version_name": "2.0.0.3",
  "manifest_version": 3,
  "default_locale": "en",
  "author": "[email protected]",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "text-detector/all-page-inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "16": "/images/32-on.png",
      "24": "/images/32.png",
      "32": "/images/32-on.png",
      "48": "/images/64.png",
      "128": "/images/128.png"
    },
    "default_title": "Click Me",
    "default_popup": "popup/index.html"
  },
  "icons": {
    "16": "/images/32-on.png",
    "24": "/images/32.png",
    "32": "/images/32.png",
    "48": "/images/64.png",
    "128": "/images/128.png"
  }
}