Spotify Open In App

Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application

Что такое Spotify Open In App?

Spotify Open In App - это расширение Chrome, разработанное kampfkeksgeschwader11, и его основная функция - "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application".

Скачать файл CRX расширения Spotify Open In App

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

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

                        You are sick of Spotify links opening in the web player? We have the solution!                    

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

Название Spotify Open In App Spotify Open In App
ID djbmbhjjincdlckokbmdalcnflihkjpa
Официальный URL https://chrome.google.com/webstore/detail/spotify-open-in-app/djbmbhjjincdlckokbmdalcnflihkjpa
Описание Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application
Размер файла 8.44 KB
Количество установок 2,000
Текущая Версия 0.21
Последнее Обновление 2018-07-30
Дата публикации 2018-07-30
Рейтинг 4.63/5 Всего 8 оценок
Разработчик kampfkeksgeschwader11
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://kampfkeksgeschwader.wixsite.com/spotifyopeninapp
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Spotify Open In App",
    "version": "0.21",
    "description": "Extension to get rid of the Spotify web player and open clicked links directly in the Spotify Desktop application",
    "manifest_version": 2,
    "icons": {
        "16": "SpotifyOpenInApp16.png",
        "48": "SpotifyOpenInApp48.png",
        "128": "SpotifyOpenInApp128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    }
}