DarkCloud

SoundCloud Dark Theme

Τι είναι το DarkCloud;

Το DarkCloud είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Diogo Silva, και η κύρια λειτουργία του είναι "SoundCloud Dark Theme".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης DarkCloud

Λήψη αρχείων επέκτασης DarkCloud σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}