Deezer Track Share
Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
Что такое Deezer Track Share?
Deezer Track Share - это расширение Chrome, разработанное natenho, и его основная функция - "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms".
Снимки экрана расширения
Скачать файл CRX расширения Deezer Track Share
Скачайте файлы расширений Deezer Track Share в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Includes the share button easily available from Deezer Web main page. Includes the SongLink share button, to open the current song in SongLink share page. Also includes buttons to open the current playing song in other platforms: - YouTube - Spotify
Основная информация о расширении
Название | Deezer Track Share |
ID | akgbpfoklebfkmbjghlibihpbbknclpp |
Официальный URL | https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp |
Описание | Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms |
Размер файла | 18.79 KB |
Количество установок | 19 |
Текущая Версия | 0.0.0.2 |
Последнее Обновление | 2021-08-06 |
Дата публикации | 2021-04-18 |
Разработчик | natenho |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Deezer Track Share", "description": "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms", "version": "0.0.0.2", "browser_action": { "default_icon": "icon96.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/www.deezer.com\/*" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/www.deezer.com\/*", "https:\/\/api.song.link\/*" ], "web_accessible_resources": [ "sharebutton.html" ], "icons": { "16": "icon16.png", "48": "icon48.png", "96": "icon96.png" } } |