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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان صفحة المساعدة | 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" ] } |