NhacCuaTui Scrobbler
This extension scrobbles currently playing music from NhacCuaTui to LastFM
Cos'è NhacCuaTui Scrobbler?
NhacCuaTui Scrobbler è un'estensione di Chrome sviluppata da jyntran, e la sua funzione principale è "This extension scrobbles currently playing music from NhacCuaTui to LastFM".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione NhacCuaTui Scrobbler
Scarica i file di estensione NhacCuaTui Scrobbler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Chrome extension that scrobbles music from NhacCuaTui.com to Last.fm - Adds current track to Last.fm profile under Scrobbling Now - Scrobbles after the halfway mark on a song - Please keep only one open tab of playing music on NhacCuaTui Feel free to contribute or post issues to the GitHub repository. License: MIT GitHub: https://github.com/jyntran/nhaccuatui-scrobbler Privacy Policy: https://github.com/jyntran/nhaccuatui-scrobbler/privacy.md
Informazioni di Base sull'Estensione
Nome | NhacCuaTui Scrobbler |
ID | obonbmgpnanbghpehmjooibelkiajofd |
URL Ufficiale | https://chromewebstore.google.com/detail/nhaccuatui-scrobbler/obonbmgpnanbghpehmjooibelkiajofd |
Descrizione | This extension scrobbles currently playing music from NhacCuaTui to LastFM |
Dimensione del File | 69.16 KB |
Conteggio Installazioni | 290 |
Versione Corrente | 1.5 |
Ultimo Aggiornamento | 2020-09-08 |
Data di Pubblicazione | 2019-10-13 |
Valutazione | 3.75/5 Totale 4 Valutazioni |
Sviluppatore | jyntran |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NhacCuaTui Scrobbler", "description": "This extension scrobbles currently playing music from NhacCuaTui to LastFM", "version": "1.5", "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_icon": "icons\/48.png", "default_popup": "popup.html" }, "permissions": [ "https:\/\/www.last.fm\/", "https:\/\/ws.audioscrobbler.com\/" ], "background": { "scripts": [ "vendor\/jquery-3.2.1.min.js", "vendor\/md5.min.js", "api\/config.js", "api\/lastfm.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.nhaccuatui.com\/*" ], "js": [ "vendor\/jquery-3.2.1.min.js", "contentscript.js" ] } ], "web_accessible_resources": [ "cb.html" ] } |