FOVD: Free Online Video Downloader

FOVD: Free Online Video Downloader

Free Online Video Downloader. Free, Fast, Quick, Easy way to download any video from any website.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "FOVD: Free Online Video Downloader",
  "version": "1.0.3",
  "description": "Free Online Video Downloader. Free, Fast, Quick, Easy way to download any video from any website.",
  "icons": {
    "128": "icons/FOVD_Logo128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icons/icon128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.youtube.com/*",
        "*://*.chrome.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "webNavigation",
    "storage",
    "scripting",
    "downloads"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  }
}