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"입니다.

확장 프로그램 스크린샷

screenshot

NhacCuaTui Scrobbler 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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