Twitch Chat Overlay

Overlay the Twitch chat when in fullscreen mode.

Co to jest Twitch Chat Overlay?

Twitch Chat Overlay to rozszerzenie Chrome opracowane przez trmcnvn, a jego główną funkcją jest „Overlay the Twitch chat when in fullscreen mode.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Twitch Chat Overlay

Pobierz pliki rozszerzeń Twitch Chat Overlay 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

                        Twitch Chat Overlay will allow you to view and interact with the chat while watching a stream in fullscreen.

You can move, resize, and toggle the chat window while in full-screen and these settings are remembered the next time you watch!                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch Chat Overlay Twitch Chat Overlay
ID lcljofkmbcdnjekeamikmefcjohmhgng
Oficjalny URL https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng
Opis Overlay the Twitch chat when in fullscreen mode.
Rozmiar pliku 25.92 KB
Liczba instalacji 3,615
Aktualna Wersja 1.10
Ostatnia Aktualizacja 2020-01-21
Data Publikacji 2020-01-14
Ocena 3.70/5 Łącznie 10 Oceny
Deweloper trmcnvn
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/trmcnvn/twitch-chat-overlay
Adres URL Strony Pomocy https://github.com/trmcnvn/twitch-chat-overlay/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch Chat Overlay",
    "description": "Overlay the Twitch chat when in fullscreen mode.",
    "version": "1.10",
    "homepage_url": "https:\/\/github.com\/trmcnvn\/twitch-chat-overlay",
    "icons": {
        "16": "resources\/icon-16.jpg",
        "48": "resources\/icon-48.jpg",
        "96": "resources\/icon-96.jpg",
        "128": "resources\/icon-128.jpg"
    },
    "web_accessible_resources": [
        "overlay.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ]
}