y_Music

Control YouTube Music with a browser extension.

ما هو y_Music؟

y_Music هو إضافة Chrome تم تطويرها بواسطة annoyingmouse، والميزة الرئيسية لها هي "Control YouTube Music with a browser extension.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة y_Music

قم بتنزيل ملفات الامتداد y_Music بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/annoyingmouse/gMusic/issues
عنوان صفحة سياسة الخصوصية 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"
    }
}