Deezer Track Share
Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
¿Qué es Deezer Track Share?
Deezer Track Share es una extensión de Chrome desarrollada por natenho, y su función principal es "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Deezer Track Share
Descarga archivos de extensión Deezer Track Share en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Deezer Track Share |
ID | akgbpfoklebfkmbjghlibihpbbknclpp |
URL Oficial | https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp |
Descripción | Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms |
Tamaño del Archivo | 18.79 KB |
Cantidad de Instalaciones | 19 |
Versión Actual | 0.0.0.2 |
Última Actualización | 2021-08-06 |
Fecha de Publicación | 2021-04-18 |
Desarrollador | natenho |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |