CodeUI - Copy text from vidoes and pdfs

CodeUI - Copy text from vidoes and pdfs

Copy text from image, vidoes and pdfs

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "CodeUI - Copy text from vidoes and pdfs",
  "version": "0.0.4",
  "description": "Copy text from image, vidoes and pdfs",
  "action": {
    "default_title": "CodeUI - Now Copy text from image, vidoes and pdfs"
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/Jcrop.gif",
        "/images/pixel.png",
        "images/icon16.png",
        "images/icon48.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "take-screenshot": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Take Screenshot"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "clipboardWrite",
    "scripting"
  ],
  "content_scripts": [
    {
      "css": [
        "css/content.css"
      ],
      "js": [
        "vendor/jquery.min.js",
        "vendor/tesseract.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}