Twitch Theatre Mode For Oled
Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.
Twitch Theatre Mode For Oled là gì?
Twitch Theatre Mode For Oled là một tiện ích mở rộng Chrome được phát triển bởi linkthai1995, và tính năng chính của nó là "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.".
Ả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 Twitch Theatre Mode For Oled
Tải xuống các tệp mở rộng Twitch Theatre Mode For Oled 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
For OLED screen users, automatically hide static elements and flip chat when watching Twitch Theatre mode. If you want to support me, buy me a Coffee: https://www.buymeacoffee.com/linkthai
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch Theatre Mode For Oled |
ID | cbgkdiclimhcgdmidmdmnpfdiflnegpl |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl |
Mô tả | Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat. |
Kích Thước Tệp | 10.21 KB |
Số Lần Cài Đặt | 345 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2023-06-19 |
Ngày Phát Hành | 2022-12-26 |
Đánh Giá | 5.00/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | linkthai1995 |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Twitch Theatre Mode For Oled", "description": "Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.", "version": "1.1", "action": { "default_popup": "popup.html", "default_icon": "twitch_oled.png" }, "icons": { "16": "twitch_oled.png", "32": "twitch_oled.png", "48": "twitch_oled.png", "128": "twitch_oled.png" }, "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.twitch.tv\/*" ], "js": [ "main.js" ], "exclude_globs": [ "https:\/\/www.twitch.tv\/directory\/*", "https:\/\/www.twitch.tv\/p\/*", "https:\/\/www.twitch.tv\/products\/*", "https:\/\/www.twitch.tv\/*\/manager*", "https:\/\/www.twitch.tv\/*\/dashboard", "https:\/\/www.twitch.tv\/broadcast", "https:\/\/www.twitch.tv\/messages\/*", "https:\/\/www.twitch.tv\/settings" ], "run_at": "document_end" } ] } |