NhacCuaTui Scrobbler

This extension scrobbles currently playing music from NhacCuaTui to LastFM

What is NhacCuaTui Scrobbler?

NhacCuaTui Scrobbler is a Chrome extension developed by jyntran, and its main feature is "This extension scrobbles currently playing music from NhacCuaTui to LastFM".

Extension Screenshots

screenshot

Download NhacCuaTui Scrobbler Extension CRX File

Download NhacCuaTui Scrobbler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name NhacCuaTui Scrobbler NhacCuaTui Scrobbler
ID obonbmgpnanbghpehmjooibelkiajofd
Official URL https://chromewebstore.google.com/detail/nhaccuatui-scrobbler/obonbmgpnanbghpehmjooibelkiajofd
Description This extension scrobbles currently playing music from NhacCuaTui to LastFM
File Size 69.16 KB
Installation Count 290
Current Version 1.5
Last Updated 2020-09-08
Publish Date 2019-10-13
Rating 3.75/5 Total 4 Ratings
Developer jyntran
Email [email protected]
Payment Type free
Supported Languages 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"
    ]
}