Youtube Chat in Fullscreen
A chrome extension creates an overlay to show Youtube live chat when in full screen
Youtube Chat in Fullscreenคืออะไร?
Youtube Chat in Fullscreen เป็นส่วนขยายของ Chrome ที่พัฒนาโดย neranyapi และคุณลักษณะหลักของมันคือ "A chrome extension creates an overlay to show Youtube live chat when in full screen"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Youtube Chat in Fullscreen
ดาวน์โหลดไฟล์ส่วนขยาย Youtube Chat in Fullscreen ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A chrome extension creates an overlay to show Youtube live chat when in full screen Key features - Show a live chat overlay when you are watching Youtube live stream in full screen - Also support video pages with chat replay - You can adjust position, opacity, size, and font size of overlay as you wish Usages - Use Ctrl + Alt + c to toggle overlay - Press and hold Ctrl + Alt, then drag to move the position of overlay Update logs v.1.0.0.13 (26-Jan-2021) - Native chat in beta - Verified user is highlight as the same as owner - Fixed the color of member name
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | falbnmmgibpljgmgpmmckflkblfeaiim |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/youtube-chat-in-fullscree/falbnmmgibpljgmgpmmckflkblfeaiim |
คำอธิบาย | A chrome extension creates an overlay to show Youtube live chat when in full screen |
ขนาดไฟล์ | 229 KB |
จำนวนการติดตั้ง | 193 |
เวอร์ชันปัจจุบัน | 1.0.0.14 |
อัปเดตครั้งล่าสุด | 2021-04-03 |
วันที่เผยแพร่ | 2021-04-03 |
ผู้พัฒนา | neranyapi |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://docs.google.com/document/d/19ZzedyqQ4abdzpQeUZD1bwX0l2jXmepslR2b8WkcI0o |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Chat in Fullscreen", "description": "A chrome extension creates an overlay to show Youtube live chat when in full screen", "version": "1.0.0.14", "manifest_version": 2, "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "default_popup": "popup.html", "default_icon": ".\/icons\/chat128.png" }, "icons": { "16": ".\/icons\/chat16.png", "48": ".\/icons\/chat48.png", "128": ".\/icons\/chat128.png" }, "permissions": [ "storage", "activeTab", "webRequest", "*:\/\/*.youtube.com\/" ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'", "web_accessible_resources": [ "pageInject.js" ] } |