YouTube Music Last.fm Scrobbler

Scrobbles songs from YouTube Music or Google Play to Last.fm

Τι είναι το YouTube Music Last.fm Scrobbler;

Το YouTube Music Last.fm Scrobbler είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον newgiin, και η κύρια λειτουργία του είναι "Scrobbles songs from YouTube Music or Google Play to Last.fm".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης YouTube Music Last.fm Scrobbler

Λήψη αρχείων επέκτασης YouTube Music Last.fm Scrobbler σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Scrobbles songs from YouTube Music or Google Play Music to Last.fm.

Usage:
1. Install extension
2. Click on the extension icon and login via "Connect to Last.fm"
3. Refresh your YT Music / Google Play page.

Features:

* Player controls
* Lightweight - Only runs when a Play window is open.
* Love/unlove tracks
* Toggle scrobbling
* Keyboard shortcuts
* Scrobbles every 7 minutes or 70% of song played, whichever happens first. This means for songs >=14 minutes, such as mixes, you will have several scrobbles for a single listening session to more fairly represent long tracks. You can turn this off on the options page (Right click on extension icon and click 'options').


Keyboard shortcuts:
Keyboard shortcuts can be edited at chrome://extensions or by going to "Chrome menu"(upper right icon in browser) > Tools > Extensions > "Keyboard shortcuts"(at bottom right of page).

Defaults*:
Toggle_play, next/previous_song**: Keyboard media keys
Open Play tab: Ctrl+Shift+0


* Current users will not have their keyboard shortcuts updated and you will have to update your shortcuts manually as described above.
** Currently issues with Linux media key support, so default shortcut for Linux is Ctrl+Shift+{7,8,9} for previous_song, toggle_play, next_song, respectively.



------------------------------
Issues:
Please report issues via GitHub. I get email notifications this way:
https://github.com/newgiin/cloudplayer-scrobbler/issues

MIT license. Github project: https://github.com/newgiin/cloudplayer-scrobbler/tree/google-music

Icons by: www.glyphicons.com
http://creativecommons.org/licenses/by/3.0/us/                    

Βασικές Πληροφορίες Επέκτασης

Όνομα YouTube Music Last.fm Scrobbler YouTube Music Last.fm Scrobbler
ID llpepekkleeoeiloijhcafgpjdnhhcbl
Επίσημο URL https://chromewebstore.google.com/detail/youtube-music-lastfm-scro/llpepekkleeoeiloijhcafgpjdnhhcbl
Περιγραφή Scrobbles songs from YouTube Music or Google Play to Last.fm
Μέγεθος Αρχείου 138 KB
Αριθμός Εγκαταστάσεων 14,149
Τρέχουσα Έκδοση 2.0.2
Τελευταία Ενημέρωση 2022-01-27
Ημερομηνία Δημοσίευσης 2020-05-30
Αξιολόγηση 3.97/5 Συνολικά 318 Αξιολογήσεις
Προγραμματιστής newgiin
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/newgiin/cloudplayer-scrobbler/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Music Last.fm Scrobbler",
    "description": "Scrobbles songs from YouTube Music or Google Play to Last.fm",
    "version": "2.0.2",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/ws.audioscrobbler.com\/",
        "http:\/\/play.google.com\/",
        "https:\/\/play.google.com\/",
        "https:\/\/music.youtube.com\/"
    ],
    "background": {
        "scripts": [
            "js\/md5.js",
            "js\/lastfm.js",
            "js\/settings.js",
            "js\/util.js",
            "js\/logging.js",
            "js\/background.js"
        ],
        "persistent": false
    },
    "icons": {
        "128": "img\/icon128.png",
        "64": "img\/icon64.png",
        "16": "img\/icon16.png",
        "48": "img\/icon48.png"
    },
    "browser_action": {
        "default_popup": "html\/popup.html",
        "default_icon": "img\/main-icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/play.google.com\/music\/listen*"
            ],
            "js": [
                "js\/inject.js",
                "js\/settings.js",
                "js\/contentscript.js"
            ]
        },
        {
            "matches": [
                "*:\/\/music.youtube.com\/*"
            ],
            "js": [
                "js\/inject.js",
                "js\/settings.js",
                "js\/ytm_contentscript.js"
            ]
        },
        {
            "run_at": "document_start",
            "matches": [
                "*:\/\/play.google.com\/music\/listen*",
                "*:\/\/music.youtube.com\/*"
            ],
            "js": [
                "js\/jquery-1.7.min.js"
            ]
        }
    ],
    "options_page": "html\/options.html",
    "web_accessible_resources": [
        "html\/lastfm_callback.html"
    ],
    "commands": {
        "toggle_play": {
            "suggested_key": {
                "default": "MediaPlayPause",
                "linux": "Ctrl+Shift+8"
            },
            "description": "Toggle play\/pause",
            "global": true
        },
        "prev_song": {
            "suggested_key": {
                "default": "MediaPrevTrack",
                "linux": "Ctrl+Shift+7"
            },
            "description": "Previous song",
            "global": true
        },
        "next_song": {
            "suggested_key": {
                "default": "MediaNextTrack",
                "linux": "Ctrl+Shift+9"
            },
            "description": "Next song",
            "global": true
        },
        "goto_play_tab": {
            "suggested_key": {
                "default": "Ctrl+Shift+0"
            },
            "description": "Go to YT Music\/Google Music tab",
            "global": true
        }
    }
}