Streaming Downloader

Streaming Downloader

Presents all the streaming sources in the current page,in a click you can open the streaming source!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "action": {
    "default_icon": "logo.png",
    "default_title": "Streaming Downloader",
    "default_popup": "popup.html"
  },
  "description": "Presents all the streaming sources in the current page,in a click you can open the streaming source!",
  "icons": {
    "128": "logo.png"
  },
  "manifest_version": 3,
  "name": "Streaming Downloader",
  "version": "1",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}