NhacCuaTui Scrobbler
This extension scrobbles currently playing music from NhacCuaTui to LastFM
什么是NhacCuaTui Scrobbler?
NhacCuaTui Scrobbler是由jyntran开发的Chrome扩展程序,该扩展的主要功能是“This extension scrobbles currently playing music from NhacCuaTui to LastFM”。
扩展截图
下载NhacCuaTui Scrobbler扩展crx文件
下载NhacCuaTui Scrobbler扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | NhacCuaTui Scrobbler |
ID | obonbmgpnanbghpehmjooibelkiajofd |
官方URL | https://chromewebstore.google.com/detail/nhaccuatui-scrobbler/obonbmgpnanbghpehmjooibelkiajofd |
简介 | This extension scrobbles currently playing music from NhacCuaTui to LastFM |
文件大小 | 69.16 KB |
安装次数 | 290 |
当前版本 | 1.5 |
更新时间 | 2020-09-08 |
上架时间 | 2019-10-13 |
评分 | 3.75/5 共4次评分 |
开发者 | jyntran |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" ] } |