Water for Spotify

A cleaner UI for the Spotify web player.

Water for Spotify란 무엇입니까?

Water for Spotify은(는) BitwiseAndrea에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A cleaner UI for the Spotify web player."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Water for Spotify 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Modifies the UI of the Spotify web player. See screenshots for a look at what this extension will provide you - in the side by side view, Water for Spotify is shown on the left.
This extension is not made by Spotify and is not affiliated with Spotify.

Some of the changes include:
- Remove all instances of green call-to-action color usage
- Remove paneling from playlist cards (and most instances of matte gray) on homepage
- Center headings
- Extend gradient background to cover more of the page
- Support half screen mode

Feel free to file bugs or requests on GitHub.

More to come!
~BitwiseAndrea                    

확장 프로그램 기본 정보

이름 Water for Spotify Water for Spotify
ID pehpkjkjaakpbgembhfbbmgdelfoeipf
공식 URL https://chrome.google.com/webstore/detail/water-for-spotify/pehpkjkjaakpbgembhfbbmgdelfoeipf
설명 A cleaner UI for the Spotify web player.
파일 크기 75.02 KB
설치 횟수 90
현재 버전 0.1.2
최근 업데이트 2020-09-01
출시 날짜 2019-11-18
평점 2.80/5 총 5 개의 평점
개발자 BitwiseAndrea
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/BitwiseAndrea/water-for-spotify
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Water for Spotify",
    "version": "0.1.2",
    "description": "A cleaner UI for the Spotify web player.",
    "icons": {
        "128": "\/images\/water.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "css": [
                "\/styles.css"
            ],
            "js": [
                "\/jquery-3.4.1.min.js",
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "*.css",
        "*.png",
        "*.cur"
    ]
}