ssYoutube - Video Downloader

ssYoutube - Video Downloader

Explore the ultimate solution for easy and efficient video and music downloads from Youtube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_description__",
  "version": "1.0.5",
  "default_locale": "en",
  "permissions": [
    "tabs",
    "storage",
    "declarativeNetRequest",
    "scripting",
    "downloads"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": {
      "19": "icon/icon_gray.png",
      "38": "icon/icon_gray.png"
    },
    "default_title": "ssyoutube"
  },
  "background": {
    "service_worker": "js/bg.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "js/jquery-3.4.1.min.js",
        "js/arrive.min.js",
        "js/downloader.js"
      ],
      "matches": [
        "https://*.ssyoutube.com/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    },
    {
      "js": [
        "js/authorization.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "icons": {
    "128": "icon/icon64.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "website.css"
      ],
      "matches": [
        "https://*.ssyoutube.com/*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "adblocker01",
        "enabled": true,
        "path": "adpoint.json"
      }
    ]
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}