Youtube Chat in Fullscreen
A chrome extension creates an overlay to show Youtube live chat when in full screen
Youtube Chat in Fullscreen là gì?
Youtube Chat in Fullscreen là một tiện ích mở rộng Chrome được phát triển bởi neranyapi, và tính năng chính của nó là "A chrome extension creates an overlay to show Youtube live chat when in full screen".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Youtube Chat in Fullscreen
Tải xuống các tệp mở rộng Youtube Chat in Fullscreen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | falbnmmgibpljgmgpmmckflkblfeaiim |
URL Chính Thức | https://chrome.google.com/webstore/detail/youtube-chat-in-fullscree/falbnmmgibpljgmgpmmckflkblfeaiim |
Mô tả | A chrome extension creates an overlay to show Youtube live chat when in full screen |
Kích Thước Tệp | 229 KB |
Số Lần Cài Đặt | 193 |
Phiên Bản Hiện Tại | 1.0.0.14 |
Cập Nhật Lần Cuối | 2021-04-03 |
Ngày Phát Hành | 2021-04-03 |
Nhà Phát Triển | neranyapi |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://docs.google.com/document/d/19ZzedyqQ4abdzpQeUZD1bwX0l2jXmepslR2b8WkcI0o |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |