Mini Player for Spotify

Get a mini player for spotify!

Что такое Mini Player for Spotify?

Mini Player for Spotify - это расширение Chrome, разработанное Martin Nester, и его основная функция - "Get a mini player for spotify!".

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

screenshot

Скачать файл CRX расширения Mini Player for Spotify

Скачайте файлы расширений Mini Player for Spotify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Spotify is a music streaming service the unfortunately doesn't offer a good mini player. With this extension you can get a miniplayer that works and looks great. 

To setup and use Mini Player for Spotify follow the steps below.

0. Install the Mini Player for Spotify Chrome Extension
1. Navigate to open.spotify.com and login to your account.
2. Install the Chrome Spotify App by pressing the "+" found in the address bar.
3. After installing resize the Spotify window to get the Mini Player or click the miniplayer button in the bottom right.
4. Optional: Right Click and Pin Spotify to taskbar.                    

Основная информация о расширении

Название Mini Player for Spotify Mini Player for Spotify
ID mjjeebakniihklfggnacbigighgildlo
Официальный URL https://chrome.google.com/webstore/detail/mini-player-for-spotify/mjjeebakniihklfggnacbigighgildlo
Описание Get a mini player for spotify!
Размер файла 2.91 MB
Количество установок 34,581
Текущая Версия 1.1.2
Последнее Обновление 2021-03-21
Дата публикации 2021-01-28
Рейтинг 4.02/5 Всего 41 оценок
Разработчик Martin Nester
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mini Player for Spotify",
    "version": "1.1.2",
    "description": "Get a mini player for spotify!",
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "64": "icons\/icon64.png"
    },
    "browser_action": [],
    "author": "Martin",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "icons\/icon32.png"
    ],
    "permissions": [
        "storage"
    ]
}