y_Music
Control YouTube Music with a browser extension.
y_Musicคืออะไร?
y_Music เป็นส่วนขยายของ Chrome ที่พัฒนาโดย annoyingmouse และคุณลักษณะหลักของมันคือ "Control YouTube Music with a browser extension."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย y_Music
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" } } |