Spotilize

A companion Chrome Extension to the Spotilize web app.

Что такое Spotilize?

Spotilize - это расширение Chrome, разработанное https://christophergomez.dev, и его основная функция - "A companion Chrome Extension to the Spotilize web app.".

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

screenshot
screenshot

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

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

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

                        This extension activates the Spotilize web app, an app built for visualizing your Spotify library. With beautiful visuals and full screen support, run this extension on a large monitor or computer hooked up to a television to really set the mood. Dance along or just listen and stare, Spotilize is here to enhance your Spotify experience.                    

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

Название Spotilize Spotilize
ID jidcihllhnmbjbnoijfepopdpkpgeobe
Официальный URL https://chromewebstore.google.com/detail/spotilize/jidcihllhnmbjbnoijfepopdpkpgeobe
Описание A companion Chrome Extension to the Spotilize web app.
Размер файла 24.78 KB
Количество установок 23
Текущая Версия 1.1.0
Последнее Обновление 2023-04-01
Дата публикации 2019-01-25
Рейтинг 3.00/5 Всего 1 оценок
Разработчик https://christophergomez.dev
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://spotilize.uc.r.appspot.com/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotilize",
    "version": "1.1.0",
    "description": "A companion Chrome Extension to the Spotilize web app.",
    "permissions": [
        "activeTab",
        "tabCapture",
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/localhost:8080\/*",
                "https:\/\/spotilize.uc.r.appspot.com\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "Spotilize",
        "default_popup": ""
    },
    "externally_connectable": {
        "matches": [
            "http:\/\/localhost:8080\/*",
            "https:\/\/spotilize.uc.r.appspot.com\/*"
        ]
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "minimum_chrome_version": "71",
    "manifest_version": 2
}