y_Music

Control YouTube Music with a browser extension.

什么是y_Music?

y_Music是由annoyingmouse开发的Chrome扩展程序,该扩展的主要功能是“Control YouTube Music with a browser extension.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载y_Music扩展crx文件

下载y_Music扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 y_Music y_Music
ID fcdclkoggpmcdchgijpgcmkacbmlkmhk
官方URL https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk
简介 Control YouTube Music with a browser extension.
文件大小 46.82 KB
安装次数 84
当前版本 0.0.0.8
更新时间 2020-07-05
上架时间 2020-07-05
评分 5.00/5 共1次评分
开发者 annoyingmouse
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/annoyingmouse/gMusic
帮助页面URL https://github.com/annoyingmouse/gMusic/issues
隐私政策页面URL https://github.com/annoyingmouse/gMusic/blob/master/privacy.md
支持的语言 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"
    }
}