SoundCloud Downloader v2

SoundCloud Downloader v2

Adds download buttons for tracks on soundcloud.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "NotTobi",
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*.soundcloud.com/*"
      ],
      "run_at": "document_start"
    },
    {
      "all_frames": true,
      "js": [
        "install.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "Adds download buttons for tracks on soundcloud.com",
  "icons": {
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "manifest_version": 2,
  "name": "SoundCloud Downloader v2",
  "options_ui": {
    "page": "settings.html"
  },
  "page_action": {
    "default_icon": {
      "48": "icons/icon-48.png",
      "64": "icons/icon-64.png",
      "96": "icons/icon-96.png",
      "128": "icons/icon-128.png"
    },
    "default_title": "Soundcloud Downloader",
    "show_matches": [
      "*://*.soundcloud.com/*"
    ]
  },
  "permissions": [
    "downloads",
    "webRequest",
    "storage",
    "webRequestBlocking",
    "*://*.soundcloud.com/*"
  ],
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2022.06.12",
  "web_accessible_resources": [
    "js/repostBlocker.js"
  ]
}