Twitch Vertical
A extension to move Twitch Chat below the player
Twitch Vertical क्या है?
Twitch Vertical Develtz Group द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A extension to move Twitch Chat below the player"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Twitch Vertical एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } |