NhacCuaTui Scrobbler
This extension scrobbles currently playing music from NhacCuaTui to LastFM
Wat is NhacCuaTui Scrobbler?
NhacCuaTui Scrobbler is een Chrome-extensie ontwikkeld door jyntran, en de belangrijkste functie is "This extension scrobbles currently playing music from NhacCuaTui to LastFM".
Extensie Screenshots
Download het CRX-bestand van de extensie NhacCuaTui Scrobbler
Download NhacCuaTui Scrobbler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | NhacCuaTui Scrobbler |
ID | obonbmgpnanbghpehmjooibelkiajofd |
Officiële URL | https://chromewebstore.google.com/detail/nhaccuatui-scrobbler/obonbmgpnanbghpehmjooibelkiajofd |
Beschrijving | This extension scrobbles currently playing music from NhacCuaTui to LastFM |
Bestandsgrootte | 69.16 KB |
Aantal Installaties | 290 |
Huidige Versie | 1.5 |
Laatst Bijgewerkt | 2020-09-08 |
Publicatiedatum | 2019-10-13 |
Beoordeling | 3.75/5 Totaal 4 Beoordelingen |
Ontwikkelaar | jyntran |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |