SoundCloud DeepDark

SoundCloud Dark Theme

SoundCloud DeepDark란 무엇입니까?

SoundCloud DeepDark은(는) motive에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SoundCloud Dark Theme"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

SoundCloud DeepDark 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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