Blackbox - Select. Copy. Paste & Search

Blackbox - Select. Copy. Paste & Search

Fastest Way to Copy Text from Videos & Images

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Blackbox - Select. Copy. Paste & Search",
  "version": "1.0.0",
  "description": "Fastest Way to Copy Text from Videos & Images",
  "action": {
    "default_icon": {
      "19": "/images/icon19.png",
      "38": "/images/icon38.png"
    },
    "default_title": "Blackbox"
  },
  "content_scripts": [
    {
      "js": [
        "vendor/jquery.min.js",
        "content/search.js",
        "content/autocompleteBtn.js",
        "content/crop.js",
        "content/copy.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content.css",
        "css/search.css"
      ]
    }
  ],
  "options_page": "/content/options.html",
  "background": {
    "service_worker": "background/background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/images/Jcrop.gif",
        "/images/pixel.png",
        "images/up.png",
        "images/down.png",
        "images/close.png",
        "images/close.svg",
        "images/icon16.png",
        "images/done-code.png",
        "images/search-white.svg",
        "images/loader.svg",
        "images/onboard-icon.svg",
        "images/onboard-close.png",
        "images/save-icon.svg",
        "css/Roboto-Regular.ttf",
        "images/LogoWhite.svg",
        "images/success-icon.svg",
        "images/closesvgwhite.svg",
        "content/scripts/search-css.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "take-screenshot": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Command+E"
      },
      "description": "Take Screenshot"
    },
    "process-video": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Command+K"
      },
      "description": "Process youtube video"
    },
    "process-visual": {
      "suggested_key": {
        "default": "Alt+I",
        "mac": "Command+I"
      },
      "description": "Process youtube video"
    },
    "autocomplete": {
      "suggested_key": {
        "default": "Alt+J",
        "mac": "Command+J"
      },
      "description": "Autocomplete"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "host_permissions": [
    "https://*/*"
  ],
  "homepage_url": "https://www.useblackbox.io/",
  "omnibox": {
    "keyword": "bx"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}