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?
Twitch Theatre Mode For Oled是由linkthai1995开发的Chrome扩展程序,该扩展的主要功能是“Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat.”。
扩展截图
下载Twitch Theatre Mode For Oled扩展crx文件
下载Twitch Theatre Mode For Oled扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Twitch Theatre Mode For Oled |
ID | cbgkdiclimhcgdmidmdmnpfdiflnegpl |
官方URL | https://chromewebstore.google.com/detail/twitch-theatre-mode-for-o/cbgkdiclimhcgdmidmdmnpfdiflnegpl |
简介 | Hide static elements in theatre mode in Twitch when there are no interaction. Occasionally flip the chat. |
文件大小 | 10.21 KB |
安装次数 | 345 |
当前版本 | 1.1 |
更新时间 | 2023-06-19 |
上架时间 | 2022-12-26 |
评分 | 5.00/5 共4次评分 |
开发者 | linkthai1995 |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } ] } |