Spotify URL Parser
Converts Spotify URLs into URIs and opens them in the Spotify app.
Что такое Spotify URL Parser?
Spotify URL Parser - это расширение Chrome, разработанное Travis Straub, и его основная функция - "Converts Spotify URLs into URIs and opens them in the Spotify app.".
Снимки экрана расширения
Скачать файл CRX расширения Spotify URL Parser
Скачайте файлы расширений Spotify URL Parser в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When you click on a Spotify link wherever it may be, it brings you to the Spotify website, and from there you have to click 4-5 separate times to get the link to open in the desktop app. This extension converts the Spotify URL to the Spotify URI and opens in Spotify automatically. The first time you run the extension, it will ask you where you want to open it, if you select "Spotify" and tell it not to ask you again, Spotify will open automatically when a link is clicked.
Основная информация о расширении
Название | Spotify URL Parser |
ID | ifanbdlamoiiaklibabmofmckkjgfmon |
Официальный URL | https://chromewebstore.google.com/detail/spotify-url-parser/ifanbdlamoiiaklibabmofmckkjgfmon |
Описание | Converts Spotify URLs into URIs and opens them in the Spotify app. |
Размер файла | 10.6 KB |
Количество установок | 43 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-02-02 |
Дата публикации | 2020-02-01 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | Travis Straub |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://tstraub.io |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Spotify URL Parser", "version": "1.0", "description": "Converts Spotify URLs into URIs and opens them in the Spotify app.", "icons": { "48": "icons\/sup48.png", "96": "icons\/sup96.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.spotify.com\/*" ], "js": [ "SpotifyURLParser.js" ] } ] } |