y_Music

Control YouTube Music with a browser extension.

Was ist y_Music?

y_Music ist eine Chrome-Erweiterung, die von annoyingmouse entwickelt wurde, und ihr Hauptmerkmal ist "Control YouTube Music with a browser extension.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

y_Music-Erweiterungs-CRX-Datei herunterladen

Laden Sie y_Music-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is a simple Chrome extension which allows you to pause and resume music playing via YouTube music.

Based upon a similar one created for Google Play Music, I've taken the opportunity to update the JS, and the images used more closely match the colour-scheme used by YouTube Music.                    

Grundlegende Informationen zur Erweiterung

Name y_Music y_Music
ID fcdclkoggpmcdchgijpgcmkacbmlkmhk
Offizielle URL https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk
Beschreibung Control YouTube Music with a browser extension.
Dateigröße 46.82 KB
Installationsanzahl 84
Aktuelle Version 0.0.0.8
Letztes Update 2020-07-05
Veröffentlichungsdatum 2020-07-05
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler annoyingmouse
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/annoyingmouse/gMusic
Hilfeseite URL https://github.com/annoyingmouse/gMusic/issues
URL der Datenschutzrichtlinien-Seite https://github.com/annoyingmouse/gMusic/blob/master/privacy.md
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "y_Music",
    "version": "0.0.0.8",
    "manifest_version": 2,
    "description": "Control YouTube Music with a browser extension.",
    "homepage_url": "https:\/\/github.com\/annoyingmouse\/gMusic",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "js\/controller.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "https:\/\/music.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/music.youtube.com\/*"
            ],
            "js": [
                "js\/injected.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/disabled.png"
    }
}