Redirect for Spotify
Redirects open.spotify.com links to your desktop application.
Что такое Redirect for Spotify?
Redirect for Spotify - это расширение Chrome, разработанное kobelobster, и его основная функция - "Redirects open.spotify.com links to your desktop application.".
Снимки экрана расширения
Скачать файл CRX расширения Redirect for Spotify
Скачайте файлы расширений Redirect for Spotify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This is just a first version for Spotify. It supports redirecting links from open.spotify.com to your desktop app if they are * an album * a playllist * a podcast * a user * an artist * a song Currently not supported is: * Error handling * Opening links while navigating spotify web ui. Currently requires reload of page ------ Licensing Icon copyright by PINPOINT.WORLD from https://www.iconfinder.com/icons/4418005/redirect_refocuse_reorientate_repurpose_reroute_shift_switch_icon under license https://creativecommons.org/licenses/by/3.0/ Icon is taken from here https://www.iconfinder.com/icons/4418005/redirect_refocuse_reorientate_repurpose_reroute_shift_switch_icon using
Основная информация о расширении
Название | Redirect for Spotify |
ID | ljhalgddlebknpbdkgodfkamemjombpp |
Официальный URL | https://chromewebstore.google.com/detail/redirect-for-spotify/ljhalgddlebknpbdkgodfkamemjombpp |
Описание | Redirects open.spotify.com links to your desktop application. |
Размер файла | 5.78 KB |
Количество установок | 448 |
Текущая Версия | 0.2.0 |
Последнее Обновление | 2020-04-12 |
Дата публикации | 2020-04-12 |
Рейтинг | 4.25/5 Всего 8 оценок |
Разработчик | kobelobster |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Redirect for Spotify", "version": "0.2.0", "description": "Redirects open.spotify.com links to your desktop application.", "icons": { "48": "icons\/icon-48.png", "96": "icons\/icon-96.png" }, "content_scripts": [ { "matches": [ "*:\/\/open.spotify.com\/*" ], "js": [ "redirect.js" ] } ], "permissions": [ "webNavigation" ] } |