ListenTo
Be a YouTube DJ or listen to other YouTube DJs
ListenToคืออะไร?
ListenTo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย posener และคุณลักษณะหลักของมันคือ "Be a YouTube DJ or listen to other YouTube DJs"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ListenTo
ดาวน์โหลดไฟล์ส่วนขยาย ListenTo ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This is an extension to https://youtube.com. This extension enables two modes: Be a DJ: Play you favorite YouTube clips, and enable others listen to a your music while you are playing it. Be a listener: Listen to a live DJ while he is playing YouTube songs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | hhdebiameojlifkdofogncmkhjadbckj |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/listento/hhdebiameojlifkdofogncmkhjadbckj |
คำอธิบาย | Be a YouTube DJ or listen to other YouTube DJs |
ขนาดไฟล์ | 149 KB |
จำนวนการติดตั้ง | 44 |
เวอร์ชันปัจจุบัน | 1.4 |
อัปเดตครั้งล่าสุด | 2019-02-22 |
วันที่เผยแพร่ | 2019-02-22 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | posener |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ListenTo", "version": "1.4", "description": "Be a YouTube DJ or listen to other YouTube DJs", "manifest_version": 2, "background": { "page": "background.html" }, "browser_action": { "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "content.js" ] } ], "icons": { "128": "images\/yt-radio-on-128.png" }, "permissions": [ "declarativeContent", "storage", "tabs", "activeTab", "https:\/\/*.listen-2.herokuapp.com\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |