Examine source code of PinkCloud

Inspect and view changes in PinkCloud 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": "PinkCloud",
  "description": "SoundCloud Dark Theme, with a Pink twist",
  "version": "2024.06.12",
  "permissions": [],
  "icons": {
    "128": "pinkcloud.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://soundcloud.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "css_darkpink.css"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}