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 |
| 官方網址 | 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"
]
}
]
} | |