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%

Co to jest Twitch Extension Fixer?

Twitch Extension Fixer to rozszerzenie Chrome opracowane przez pelleoe, a jego główną funkcją jest „This will extension will fix double click to full screen by confining Twitch overlay extensions to have a max widt of 33%”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch Extension Fixer

Pobierz pliki rozszerzeń Twitch Extension Fixer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Extension Fixer Twitch Extension Fixer
ID faempdinfpgfoghncgoigpcldlgbcpkf
Oficjalny URL https://chromewebstore.google.com/detail/twitch-extension-fixer/faempdinfpgfoghncgoigpcldlgbcpkf
Opis This will extension will fix double click to full screen by confining Twitch overlay extensions to have a max widt of 33%
Rozmiar pliku 6.38 KB
Liczba instalacji 13
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2019-05-05
Data Publikacji 2019-05-05
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper pelleoe
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}