Spotless

Effortless Spotify

Что такое Spotless?

Spotless - это расширение Chrome, разработанное phandd, и его основная функция - "Effortless Spotify".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Spotless

Скачайте файлы расширений 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
Электронная почта [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"
            ]
        }
    ]
}