Examine source code of Selectext: Copy Text from Videos

Inspect and view changes in Selectext: Copy Text from Videos source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Selectext: Copy Text from Videos",
  "version": "3.1.13",
  "manifest_version": 3,
  "icons": {
    "128": "images/selectext-128-icon.png"
  },
  "description": "Copy text directly from videos on Youtube and any site",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA9Y/g/NWMX3bsSGb+xMVNRYPH9wKIyoAwKSks/jxoLEDJuAdXozEUQENCRoHJ/HTRnHm8ZyC0mBxwO4AYEZa/2/HECQ9Fe2u3oZGAFt/ycfX/i9ficcEKgbldxzQc0aepWpQJM2spICB0kkqczNi5p+Qo8OO/TtZ3hBKh8EoSJaOo/WI4C8V+NgfE8l0UtOhMArzYlZqCfRH9i8NP6frtYSe7DJMAOq7Rh7aBRkrEL1g6yhImfMXlh2bjIcSDlc2XccKldo6liPSgLl0ykmu9SYuLSikMVBh9jQiiv44Cvu22bdcm5USnBurAIPbrHtYJ64Xn7hW6b2t57O6ZAasrBwIDAQAB",
  "permissions": [
    "activeTab",
    "storage",
    "browsingData",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "polyfills/browser-polyfill.min.js",
        "jquery/jquery-3.5.1.min.js",
        "jquery/jquery-ui.min.js",
        "arrive/arrive.min.js",
        "lodash/lodash.min.js",
        "selectable/selectable.js",
        "config.js",
        "common.js",
        "settingsManager.js",
        "login.js",
        "limit.js",
        "review.js",
        "content.js",
        "shortcut.js",
        "iframeListener.js",
        "screenshot.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    },
    {
      "matches": [
        "*://*.selectext.app/*"
      ],
      "js": [
        "polyfills/browser-polyfill.min.js",
        "siteListener.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "selectext",
    "default_icon": "images/selectext-128-icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/image.svg",
        "images/copy.svg",
        "images/camera.svg",
        "images/selectext-logo-filled.svg",
        "fonts/open_sans/open-sans-v18-latin-800.woff",
        "fonts/open_sans/open-sans-v18-latin-regular.woff",
        "fonts/open_sans/OpenSans-Bold.woff",
        "login.html",
        "limit.html",
        "review.html",
        "shadow.css",
        "login.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "commands": {
    "copy-text-from-video": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "Copy Text from Video"
    },
    "copy-video-screenshot": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "Copy Video Screenshot"
    }
  }
}