y_Music

Control YouTube Music with a browser extension.

y_Music là gì?

y_Music là một tiện ích mở rộng Chrome được phát triển bởi annoyingmouse, và tính năng chính của nó là "Control YouTube Music with a browser extension.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng y_Music

Tải xuống các tệp mở rộng y_Music dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên y_Music y_Music
ID fcdclkoggpmcdchgijpgcmkacbmlkmhk
URL Chính Thức https://chrome.google.com/webstore/detail/ymusic/fcdclkoggpmcdchgijpgcmkacbmlkmhk
Mô tả Control YouTube Music with a browser extension.
Kích Thước Tệp 46.82 KB
Số Lần Cài Đặt 84
Phiên Bản Hiện Tại 0.0.0.8
Cập Nhật Lần Cuối 2020-07-05
Ngày Phát Hành 2020-07-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển annoyingmouse
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/annoyingmouse/gMusic
URL Trang Trợ Giúp https://github.com/annoyingmouse/gMusic/issues
URL Trang Chính Sách Bảo Mật https://github.com/annoyingmouse/gMusic/blob/master/privacy.md
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}