Twitch Brightness Reducer
Controls brightness of the videoplayer in twitch.
什么是Twitch Brightness Reducer?
Twitch Brightness Reducer是由sougataghar47开发的Chrome扩展程序,该扩展的主要功能是“Controls brightness of the videoplayer in twitch.”。
扩展截图
下载Twitch Brightness Reducer扩展crx文件
下载Twitch Brightness Reducer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension Controls brightness of the video player in twitch. Useful for when you are watching twitch at night. 扩展基本信息
| 名称 | |
| ID | bigbbjepoigjhcbepeahdepmjbnjodek |
| 官方URL | https://chromewebstore.google.com/detail/twitch-brightness-reducer/bigbbjepoigjhcbepeahdepmjbnjodek |
| 简介 | Controls brightness of the videoplayer in twitch. |
| 文件大小 | 4.12 KB |
| 安装次数 | 15 |
| 当前版本 | 1.0 |
| 更新时间 | 2023-03-15 |
| 上架时间 | 2023-03-15 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | sougataghar47 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Twitch Brightness Reducer",
"version": "1.0",
"description": "Controls brightness of the videoplayer in twitch.",
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"reducer.js"
],
"css": [
"styles.css"
]
}
]
} | |