TV for Youtube
Makes youtube.com/tv not redirect
TV for Youtubeคืออะไร?
TV for Youtube เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tberghuis และคุณลักษณะหลักของมันคือ "Makes youtube.com/tv not redirect"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TV for Youtube
ดาวน์โหลดไฟล์ส่วนขยาย TV for Youtube ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Chrome extension that allows the viewing of the TV interface through the browser. Features a control to allow for fullscreen mode. Replaces User-Agent request header so that google will reply with the old working leanback interface.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TV for Youtube |
ID | mbkenkpbobncoehadfogibjlhnaopcpb |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/tv-for-youtube/mbkenkpbobncoehadfogibjlhnaopcpb |
คำอธิบาย | Makes youtube.com/tv not redirect |
ขนาดไฟล์ | 101 KB |
จำนวนการติดตั้ง | 1,636 |
เวอร์ชันปัจจุบัน | 0.0.3 |
อัปเดตครั้งล่าสุด | 2021-01-19 |
วันที่เผยแพร่ | 2021-01-19 |
คะแนน | 3.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | tberghuis |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/tberghuis/tv-for-youtube |
URL หน้าช่วยเหลือ | https://github.com/tberghuis/tv-for-youtube/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TV for Youtube", "description": "Makes youtube.com\/tv not redirect", "version": "0.0.3", "manifest_version": 2, "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/www.youtube.com\/tv" ], "content_scripts": [ { "js": [ "content.js" ], "css": [ "fontawesome\/all.css", "content.css" ], "matches": [ "https:\/\/www.youtube.com\/tv" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "web_accessible_resources": [ "fullscreen.png", "fontawesome\/webfonts\/fa-solid-900.woff2" ], "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" } } |