DarkCloud

SoundCloud Dark Theme

DarkCloud क्या है?

DarkCloud Diogo Silva द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "SoundCloud Dark Theme"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DarkCloud एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        All the code is available on GitHub: https://github.com/iamdiogo/DarkCloud
This extension is open-source, so feel free to use or edit it if you want.

With this extension, you'll get a darker themed SoundCloud for those who prefer it, either because it looks cooler or it goes easier on your eyes!
Feel more than free to contribute to it on GitHub, for bug corrections or even new ideas.
Let me know if you found a bug!

Changelog:

v2023.11.7:
- Added dark color scheme (thanks to juanoliveira82)
- Fixed border for comment section (thanks to aknorw)
- Added dark theme to missing menus (thanks to vittoopugliese)
- Fixed comments color (thanks to sdsdsdw)

v2022.11.06:
- Fixed artist insight text (thanks to a-pillow)
- Fixed keyboard shortcuts menu (thanks to nicoluvas)
- Removed white border from likes, reposts and latest sections (thanks to nicoluvas)

v2020.01.28:
Thanks to MyNameIsJulian and Franckevicius:
- Fixed featured profiles text
- Fixed the badge in featured profiles
Thanks to MyNameIsJulian:
- Made body font slightly thicker for readability
- Fixed delete playlist button icon

v2019.12.8:
Thanks to Franckevicius and MyNameIsJulian:
- Fixed "Comments disabled" box
- Fixed empty profile page
Thanks to MyNameIsJulian:
- Fixed "Unlock Previews with SoundCloud Go+"

10.11.2019: v1.0.8.2
Thanks to MyNameIsJulian:
- Added better color integration with footer soundcloud logo
- Fixed blur of "view all" box in library
- Made font on small buttons a bit thicker
- Added dark theme for pop-up hints and tips to new users
Thanks to Franckevicius:
- Fixed white highlight when hovering over playlist expansion in stream
- Fixed upload limit panel in stream

11.10.2019: v1.0.8.1
- Fixed interaction area on old album layout (thanks to Franckevicius)
- Fixed white "Remove from Next Up"

11.06.2019 v1.0.8
- Minor bug fixes: bottom soundcloud logo, notification alert border, text in dashbox (thanks to MyNameIsJulian).
- Fixed gradient on long user descriptions (thanks to balbinus).

23.04.2019 v1.0.7
- Compact tracklists and comment pop ups are a little brighter for readability (thanks to MyNameIsJulian).

27.11.2018 v1.0.6
- Fixed UI components for adding and editing songs.

26.11.2018 v1.0.5
- Fixed white components on playlist pages.
- Fixed some general broken UI components.

28.01.2018 v1.0.4
- Fixed messages page that was still white.
- Fixed a bug where a panel was invisible.

17.10.2017 v1.0.3
- Seriously optimized the extension.

15.08.2017 v1.0.2
- Fixed the upload page, that was still white.

14.08.2017 v1.0.1
- Fixed some minor bugs in some pages that were still white.

14.09.2017: v1.0.0
- Released the extension. Hurray!                    

एक्सटेंशन की मूल जानकारी

नाम DarkCloud DarkCloud
ID mjicdmidmifkppilbbcanmnljpffmfmh
आधिकारिक URL https://chromewebstore.google.com/detail/darkcloud/mjicdmidmifkppilbbcanmnljpffmfmh
विवरण SoundCloud Dark Theme
फ़ाइल का आकार 10.95 KB
स्थापना संख्या 61,939
वर्तमान संस्करण 2023.11.07
अंतिम अपडेट 2023-11-08
प्रकाशन तिथि 2020-08-11
रेटिंग 4.85/5 कुल 201 रेटिंग्स
डेवलपर Diogo Silva
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DarkCloud",
    "description": "SoundCloud Dark Theme",
    "version": "2023.11.07",
    "permissions": [],
    "icons": {
        "128": "darklogo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "DarkCloud",
        "default_icon": "darklogo.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "css_dark.css"
    ]
}