Twitch Extension Fixer

This will extension will fix double click to full screen by confining Twitch overlay extensions to have a max widt of 33%

Что такое Twitch Extension Fixer?

Twitch Extension Fixer - это расширение Chrome, разработанное pelleoe, и его основная функция - "This will extension will fix double click to full screen by confining Twitch overlay extensions to have a max widt of 33%".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Twitch Extension Fixer

Скачайте файлы расширений Twitch Extension Fixer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension will fix Twitch overlay issues that disables double click to fullscreen. The extension will only run on Twitch.tv. It will make the Twitch overlay container have a max width of 33%. This will enable you to double click to enter fullscreen and exit fullscreen                    

Основная информация о расширении

Название Twitch Extension Fixer Twitch Extension Fixer
ID faempdinfpgfoghncgoigpcldlgbcpkf
Официальный URL https://chromewebstore.google.com/detail/twitch-extension-fixer/faempdinfpgfoghncgoigpcldlgbcpkf
Описание This will extension will fix double click to full screen by confining Twitch overlay extensions to have a max widt of 33%
Размер файла 6.38 KB
Количество установок 13
Текущая Версия 1.0
Последнее Обновление 2019-05-05
Дата публикации 2019-05-05
Рейтинг 5.00/5 Всего 2 оценок
Разработчик pelleoe
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitch Extension Fixer",
    "version": "1.0",
    "description": "This will extension will fix double click to full screen by confining Twitch overlay extensions to have a max widt of 33%",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.twitch.tv\/*"
            ],
            "css": [
                "styles.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": {
            "16": "icons\/twitch16.png",
            "32": "icons\/twitch32.png",
            "48": "icons\/twitch48.png",
            "128": "icons\/twitch128.png"
        }
    },
    "icons": {
        "16": "icons\/twitch16.png",
        "32": "icons\/twitch32.png",
        "48": "icons\/twitch48.png",
        "128": "icons\/twitch128.png"
    },
    "manifest_version": 2
}