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" } } |