SoundCloud Cut & Share

SoundCloud Cut & Share

Cut SoundCloud tracks and share your favorite parts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SoundCloud Cut & Share",
  "version": "1.0.2",
  "action": {
    "default_icon": {
      "16": "assets/icons/16.png",
      "32": "assets/icons/32.png",
      "48": "assets/icons/48.png",
      "128": "assets/icons/128.png"
    },
    "default_popup": "popup/index.html",
    "default_title": "SoundCloud Cut & Share"
  },
  "description": "Cut SoundCloud tracks and share your favorite parts.",
  "icons": {
    "16": "assets/icons/16.png",
    "32": "assets/icons/32.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "author": "Ilya Zaytsev",
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content/content-script.js"
      ],
      "matches": [
        "https://*.soundcloud.com/*",
        "https://soundcloudshare.onrender.com/*"
      ]
    }
  ],
  "incognito": "not_allowed",
  "offline_enabled": false,
  "host_permissions": [
    "https://soundcloud.com/"
  ],
  "permissions": [
    "storage"
  ],
  "short_name": "Soundcloud Cut & Share"
}