Deezer Track Share
Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms
Qu'est-ce que Deezer Track Share ?
Deezer Track Share est une extension Chrome développée par natenho, et sa fonction principale est "Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Deezer Track Share
Téléchargez les fichiers d'extension Deezer Track Share au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Deezer Track Share |
ID | akgbpfoklebfkmbjghlibihpbbknclpp |
URL Officiel | https://chromewebstore.google.com/detail/deezer-track-share/akgbpfoklebfkmbjghlibihpbbknclpp |
Description | Add the 'missing' share button of the current track in Deezer and improve sharing among other platforms |
Taille du Fichier | 18.79 KB |
Nombre d'Installations | 19 |
Version Actuelle | 0.0.0.2 |
Dernière Mise à Jour | 2021-08-06 |
Date de Publication | 2021-04-18 |
Développeur | natenho |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |