y_Music

Control YouTube Music with a browser extension.

Cos'è y_Music?

y_Music è un'estensione di Chrome sviluppata da annoyingmouse, e la sua funzione principale è "Control YouTube Music with a browser extension.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione y_Music

Scarica i file di estensione y_Music in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome y_Music y_Music
ID fcdclkoggpmcdchgijpgcmkacbmlkmhk
URL Ufficiale https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk
Descrizione Control YouTube Music with a browser extension.
Dimensione del File 46.82 KB
Conteggio Installazioni 84
Versione Corrente 0.0.0.8
Ultimo Aggiornamento 2020-07-05
Data di Pubblicazione 2020-07-05
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore annoyingmouse
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/annoyingmouse/gMusic
URL della Pagina di Aiuto https://github.com/annoyingmouse/gMusic/issues
URL della Pagina della Politica sulla Privacy https://github.com/annoyingmouse/gMusic/blob/master/privacy.md
Lingue Supportate 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"
    }
}