Deezer Track Share
Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
O que é Deezer Track Share?
Deezer Track Share é uma extensão do Chrome desenvolvida por natenho, e sua principal característica é "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Deezer Track Share
Baixe arquivos de extensão Deezer Track Share no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Deezer Track Share |
ID | akgbpfoklebfkmbjghlibihpbbknclpp |
URL Oficial | https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp |
Descrição | Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms |
Tamanho do Arquivo | 18.79 KB |
Contagem de Instalações | 19 |
Versão Atual | 0.0.0.2 |
Última Atualização | 2021-08-06 |
Data de Publicação | 2021-04-18 |
Desenvolvedor | natenho |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } } |