DarkCloud

SoundCloud Dark Theme

什麼是DarkCloud?

DarkCloud是由Diogo Silva開發的Chrome擴展程式,該擴展的主要功能是“SoundCloud Dark Theme”。

擴展截圖

screenshot

下載DarkCloud擴展crx文件

下載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
官方網址 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"
    ]
}