DarkCloud

SoundCloud Dark Theme

Apa itu DarkCloud?

DarkCloud adalah ekstensi Chrome yang dikembangkan oleh Diogo Silva, dan fitur utamanya adalah "SoundCloud Dark Theme".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi DarkCloud

Unduh file ekstensi DarkCloud dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama DarkCloud DarkCloud
ID mjicdmidmifkppilbbcanmnljpffmfmh
URL Resmi https://chromewebstore.google.com/detail/darkcloud/mjicdmidmifkppilbbcanmnljpffmfmh
Deskripsi SoundCloud Dark Theme
Ukuran File 10.95 KB
Jumlah Instalasi 61,939
Versi Saat Ini 2023.11.07
Terakhir Diperbarui 2023-11-08
Tanggal Publikasi 2020-08-11
Penilaian 4.85/5 Total 201 Penilaian
Pengembang Diogo Silva
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}