SwagLyrics for Spotify
Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.
Что такое SwagLyrics for Spotify?
SwagLyrics for Spotify - это расширение Chrome, разработанное https://swaglyrics.dev, и его основная функция - "Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.".
Снимки экрана расширения
Скачать файл CRX расширения SwagLyrics for Spotify
Скачайте файлы расширений SwagLyrics for Spotify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The SwagLyrics extension extends Spotify Web Player support to the SwSpotify (https://swaglyrics.dev/SwSpotify) python library. This allows developers to make cross-platform applications that interact with Spotify without worrying about each OS themselves. The extension is open source at https://github.com/SwagLyrics/SwagLyrics-Chrome-Extension. If you're an end user redirected to the extension by a dev, then all you need to do is to install this extension to enable support for the Spotify Web Player!
Основная информация о расширении
Название | SwagLyrics for Spotify |
ID | miopldoofdhmipepmnclnoangcdffmlk |
Официальный URL | https://chromewebstore.google.com/detail/swaglyrics-for-spotify/miopldoofdhmipepmnclnoangcdffmlk |
Описание | Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later. |
Размер файла | 9.59 KB |
Количество установок | 619 |
Текущая Версия | 1.0 |
Последнее Обновление | 2020-05-23 |
Дата публикации | 2020-05-22 |
Рейтинг | 3.46/5 Всего 13 оценок |
Разработчик | https://swaglyrics.dev |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://swaglyrics.dev/SwagLyrics-Chrome-Extension |
URL страницы помощи | https://github.com/SwagLyrics/SwagLyrics-Chrome-Extension/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SwagLyrics for Spotify", "description": " Get lyrics of currently playing Spotify song so you don't sing along with the wrong ones and embarrass yourself later.", "version": "1.0", "icons": { "128": "swaglyrics_pfp_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/open.spotify.com\/*" ], "all_frames": true, "js": [ "bridge.js" ] } ] } |