SoundCloud DeepDark

SoundCloud Dark Theme

什么是SoundCloud DeepDark?

SoundCloud DeepDark是由motive开发的Chrome扩展程序,该扩展的主要功能是“SoundCloud Dark Theme”。

扩展截图

screenshot
screenshot

下载SoundCloud DeepDark扩展crx文件

下载SoundCloud DeepDark扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Google Chrome extension for SOUNDCLOUD

The extension adds a dark theme to the soundcloud, not provided by the developers of the project. Save eyes at night and allows the site to look aesthetically pleasing.

The product is open source, you can find the code at https://github.com/sx-motive/soundcloud-deepdark

Report an error or ask a question to the author
Software / frontend developer - Denis Kunitsyn - https://t.me/sxmotive                    

扩展基本信息

名称 SoundCloud DeepDark SoundCloud DeepDark
ID edooflagimepjnndabmcdlahbfpagjcl
官方URL https://chromewebstore.google.com/detail/soundcloud-deepdark/edooflagimepjnndabmcdlahbfpagjcl
简介 SoundCloud Dark Theme
文件大小 14.48 KB
安装次数 385
当前版本 1.0.1
更新时间 2021-11-06
上架时间 2021-11-06
评分 3.75/5 共4次评分
开发者 motive
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/sx-motive/soundcloud-deepdark
帮助页面URL https://github.com/sx-motive/soundcloud-deepdark
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SoundCloud DeepDark",
    "description": "SoundCloud Dark Theme",
    "version": "1.0.1",
    "permissions": [],
    "icons": {
        "128": "logo.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/soundcloud.com\/*"
            ],
            "js": [
                "background.js"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_title": "SoundCloud DeepDark",
        "default_icon": "logo.png"
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "dark.css"
    ]
}