Spotless

Effortless Spotify

Spotless란 무엇입니까?

Spotless은(는) phandd에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Effortless Spotify"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Too annoyed by Spotify Ads? Too lazy to navigate to Spotify when you want to change your music? Spotless is here to help you use Spotify effortless!

What makes Spotless different from other Spotify players out there is you can control your Spotify player no matter what device you are using, what tab you are currently on.

Try it out and you will love it!

For source code and issue reporting: https://github.com/phandd/spotless                    

확장 프로그램 기본 정보

이름 Spotless Spotless
ID allccgoelledmdfenijoodhcfjndddjh
공식 URL https://chromewebstore.google.com/detail/spotless/allccgoelledmdfenijoodhcfjndddjh
설명 Effortless Spotify
파일 크기 421 KB
설치 횟수 8,911
현재 버전 1.3.1
최근 업데이트 2020-03-16
출시 날짜 2020-03-15
평점 4.54/5 총 50 개의 평점
개발자 phandd
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/phandd/spotless
도움말 페이지 URL https://github.com/phandd/spotless
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Spotless",
    "description": "Effortless Spotify",
    "version": "1.3.1",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "Spotless",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/open.spotify.com\/",
        "https:\/\/spotify.com\/"
    ],
    "icons": {
        "128": "icon-128.png",
        "16": "icon-16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content-script.js"
            ]
        }
    ]
}