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. Основная информация о расширении
| Название | |
| 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"
]
} | |