Twitch Vertical
A extension to move Twitch Chat below the player
什么是Twitch Vertical?
Twitch Vertical是由Develtz Group开发的Chrome扩展程序,该扩展的主要功能是“A extension to move Twitch Chat below the player”。
扩展截图
下载Twitch Vertical扩展crx文件
下载Twitch Vertical扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A simple extension to move the Twitch's chat below the player.
I've build this in less the 2 hours just to fix a personal issue since I use a monitor in the vertical position. It's not perfect but it is opensource.
Sometimes I can bug a little, just disable/renable the extension.
You can contribute and help me improve this for everyone. Just check the github repository. 扩展基本信息
| 名称 | |
| ID | ahfcaiejokljdddiodkpgoljeaglhokb |
| 官方URL | https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb |
| 简介 | A extension to move Twitch Chat below the player |
| 文件大小 | 28.74 KB |
| 安装次数 | 25 |
| 当前版本 | 1.0.0 |
| 更新时间 | 2020-01-29 |
| 上架时间 | 2020-01-29 |
| 开发者 | Develtz Group |
| 付费类型 | free |
| 扩展官网 | https://github.com/mathewcst/twitch-vertical |
| 帮助页面URL | https://github.com/mathewcst/twitch-vertical/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitch Vertical",
"description": "A extension to move Twitch Chat below the player",
"version": "1.0.0",
"manifest_version": 2,
"icons": {
"48": "icons\/icon_48.png",
"128": "icons\/icon_128.png"
},
"browser_action": {
"default_icon": "icons\/icon_128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http:\/\/*.twitch.tv\/*",
"https:\/\/*.twitch.tv\/*"
],
"js": [
"content.js"
],
"css": [
"vertical.css"
]
}
],
"permissions": [
"storage"
]
} | |