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.
擴展基本資訊
名稱 | Twitch Vertical |
ID | ahfcaiejokljdddiodkpgoljeaglhokb |
官方網址 | 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" ] } |