Spotless

Effortless Spotify

Spotlessとは何ですか?

Spotlessはphanddによって開発されたChromeの拡張機能で、その主な機能は「Effortless Spotify」です。

拡張機能のスクリーンショット

screenshot

Spotless拡張機能のCRXファイルをダウンロード

Spotless拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
            ]
        }
    ]
}