VidHelper - Video Download Helper

VidHelper - Video Download Helper

Download any video or audio from any website with just one click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "bg-release.js"
  },
  "action": {
    "default_icon": "images/logo.png",
    "default_popup": "html/popup.html",
    "default_title": "__MSG_title__"
  },
  "default_locale": "en",
  "description": "__MSG_desc__",
  "icons": {
    "64": "images/logo.png",
    "128": "images/logo-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "js/common.js",
        "js/common1.js",
        "js/content.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/*.js",
        "js/injected/*.js",
        "js/injected/*/*.js",
        "css/*.css",
        "js/*.wasm"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'; worker-src 'self' 'wasm-unsafe-eval';"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "homepage_url": "https://vidhelper.app",
  "permissions": [
    "tabs",
    "webRequest",
    "scripting",
    "storage",
    "unlimitedStorage",
    "downloads",
    "declarativeNetRequest",
    "contextMenus",
    "notifications",
    "tabCapture"
  ],
  "commands": {
    "cancel-recording": {
      "suggested_key": {
        "default": "Alt+Shift+C"
      },
      "description": "Cancel recording"
    },
    "stop-recording": {
      "suggested_key": {
        "default": "Alt+Shift+Z"
      },
      "description": "Stop recording"
    }
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "short_name": "__MSG_name__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.8.0"
}