y_Music

Control YouTube Music with a browser extension.

What is y_Music?

y_Music is a Chrome extension developed by annoyingmouse, and its main feature is "Control YouTube Music with a browser extension.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download y_Music Extension CRX File

Download y_Music 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

                        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.                    

Extension Basic Information

Name y_Music y_Music
ID fcdclkoggpmcdchgijpgcmkacbmlkmhk
Official URL https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk
Description Control YouTube Music with a browser extension.
File Size 46.82 KB
Installation Count 84
Current Version 0.0.0.8
Last Updated 2020-07-05
Publish Date 2020-07-05
Rating 5.00/5 Total 1 Ratings
Developer annoyingmouse
Email [email protected]
Payment Type free
Extension Website https://github.com/annoyingmouse/gMusic
Help Page URL https://github.com/annoyingmouse/gMusic/issues
Privacy Policy Page URL https://github.com/annoyingmouse/gMusic/blob/master/privacy.md
Supported Languages 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"
    }
}