y_Music

Control YouTube Music with a browser extension.

Wat is y_Music?

y_Music is een Chrome-extensie ontwikkeld door annoyingmouse, en de belangrijkste functie is "Control YouTube Music with a browser extension.".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie y_Music

Download y_Music-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam y_Music y_Music
ID fcdclkoggpmcdchgijpgcmkacbmlkmhk
Officiële URL https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk
Beschrijving Control YouTube Music with a browser extension.
Bestandsgrootte 46.82 KB
Aantal Installaties 84
Huidige Versie 0.0.0.8
Laatst Bijgewerkt 2020-07-05
Publicatiedatum 2020-07-05
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar annoyingmouse
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/annoyingmouse/gMusic
Help Pagina-URL https://github.com/annoyingmouse/gMusic/issues
URL van de Privacybeleid Pagina https://github.com/annoyingmouse/gMusic/blob/master/privacy.md
Ondersteunde Talen 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"
    }
}