Open Spotify Desktop App
Automatically opens the Desktop Spotify app for open.spotify.com links.
Что такое Open Spotify Desktop App?
Open Spotify Desktop App - это расширение Chrome, разработанное thom801, и его основная функция - "Automatically opens the Desktop Spotify app for open.spotify.com links.".
Снимки экрана расширения
Скачать файл CRX расширения Open Spotify Desktop App
Скачайте файлы расширений Open Spotify Desktop App в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When you click a link to open Spotify on your computer you are normally taken to the website and then have to take a few more steps to open the app. This extension will open the song, album, or playlist in the native app for you instantly.
Основная информация о расширении
Название | Open Spotify Desktop App |
ID | ccilmbdijoknlfpepncnebjkiclplhig |
Официальный URL | https://chromewebstore.google.com/detail/open-spotify-desktop-app/ccilmbdijoknlfpepncnebjkiclplhig |
Описание | Automatically opens the Desktop Spotify app for open.spotify.com links. |
Размер файла | 8.13 KB |
Количество установок | 4,824 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-01-12 |
Дата публикации | 2021-01-12 |
Рейтинг | 4.64/5 Всего 11 оценок |
Разработчик | thom801 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open Spotify Desktop App", "version": "1.0", "description": "Automatically opens the Desktop Spotify app for open.spotify.com links.", "author": "Thom Allen - Twitter @thom801", "manifest_version": 2, "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "permissions": [ "https:\/\/open.spotify.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "include_globs": [ "https:\/\/open.spotify.com\/*" ], "js": [ "open-spotify.js" ] } ] } |