Examine source code of Video Saver

Inspect and view changes in Video Saver 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
{
  "manifest_version": 3,
  "name": "__MSG_ext_name__",
  "short_name": "__MSG_ext_short_name__",
  "description": "__MSG_ext_description__",
  "default_locale": "en",
  "version": "0.0.7",
  "action": {
    "default_icon": "img/64.png",
    "default_popup": "popup/popup.html",
    "default_title": "video downloader"
  },
  "icons": {
    "16": "img/16.png",
    "24": "img/24.png",
    "64": "img/64.png",
    "128": "img/128.png"
  },
  "permissions": [
    "webRequest",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "downloads",
    "storage",
    "scripting"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "/ads.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}