DarkCloud

SoundCloud Dark Theme

Cos'è DarkCloud?

DarkCloud è un'estensione di Chrome sviluppata da Diogo Silva, e la sua funzione principale è "SoundCloud Dark Theme".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione DarkCloud

Scarica i file di estensione DarkCloud in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome DarkCloud DarkCloud
ID mjicdmidmifkppilbbcanmnljpffmfmh
URL Ufficiale https://chromewebstore.google.com/detail/darkcloud/mjicdmidmifkppilbbcanmnljpffmfmh
Descrizione SoundCloud Dark Theme
Dimensione del File 10.95 KB
Conteggio Installazioni 61,939
Versione Corrente 2023.11.07
Ultimo Aggiornamento 2023-11-08
Data di Pubblicazione 2020-08-11
Valutazione 4.85/5 Totale 201 Valutazioni
Sviluppatore Diogo Silva
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}