YouTube Genius
Get lyrics provided by Genius on YouTube videos
YouTube Geniusคืออะไร?
YouTube Genius เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://youtube-genius.com และคุณลักษณะหลักของมันคือ "Get lyrics provided by Genius on YouTube videos"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Genius
ดาวน์โหลดไฟล์ส่วนขยาย YouTube Genius ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension allows you to view and listen YouTube music videos alongside the lyrics. Lyrics are placed inside the YouTube page itself so you don't need to open a separate tab in order to read the lyrics of your favorite songs.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | YouTube Genius |
ID | lmnandahjhfgfimknapgffcjojmnihjn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn |
คำอธิบาย | Get lyrics provided by Genius on YouTube videos |
ขนาดไฟล์ | 32.74 KB |
จำนวนการติดตั้ง | 890 |
เวอร์ชันปัจจุบัน | 1.3.5 |
อัปเดตครั้งล่าสุด | 2022-08-27 |
วันที่เผยแพร่ | 2019-02-14 |
คะแนน | 3.89/5 รวมทั้งหมด 19 คะแนน |
ผู้พัฒนา | https://youtube-genius.com |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Genius", "version": "1.3.5", "description": "Get lyrics provided by Genius on YouTube videos", "icons": { "16": "Icon16.png", "48": "Icon48.png", "128": "Icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "css": [ "main.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "app.js", "main.css" ], "matches": [ "https:\/\/www.youtube.com\/*" ], "use_dynamic_url": true } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'", "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'" }, "action": { "default_icon": { "16": "Icon16.png", "48": "Icon48.png", "128": "Icon128.png" } } } |