Twitch Vertical
A extension to move Twitch Chat below the player
Twitch Verticalคืออะไร?
Twitch Vertical เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Develtz Group และคุณลักษณะหลักของมันคือ "A extension to move Twitch Chat below the player"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Vertical
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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" ] } |