Twitch Vertical
A extension to move Twitch Chat below the player
Twitch Vertical là gì?
Twitch Vertical là một tiện ích mở rộng Chrome được phát triển bởi Develtz Group, và tính năng chính của nó là "A extension to move Twitch Chat below the player".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Twitch Vertical
Tải xuống các tệp mở rộng Twitch Vertical dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Twitch Vertical |
ID | ahfcaiejokljdddiodkpgoljeaglhokb |
URL Chính Thức | https://chromewebstore.google.com/detail/twitch-vertical/ahfcaiejokljdddiodkpgoljeaglhokb |
Mô tả | A extension to move Twitch Chat below the player |
Kích Thước Tệp | 28.74 KB |
Số Lần Cài Đặt | 25 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2020-01-29 |
Ngày Phát Hành | 2020-01-29 |
Nhà Phát Triển | Develtz Group |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/mathewcst/twitch-vertical |
URL Trang Trợ Giúp | https://github.com/mathewcst/twitch-vertical/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |