Twitch Chat Overlay

Overlay the Twitch chat when in fullscreen mode.

Hvad er Twitch Chat Overlay?

Twitch Chat Overlay er en Chrome-udvidelse udviklet af trmcnvn, og dens hovedfunktion er "Overlay the Twitch chat when in fullscreen mode.".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Twitch Chat Overlay-udvidelses-CRX-fil

Download Twitch Chat Overlay-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Twitch Chat Overlay Twitch Chat Overlay
ID lcljofkmbcdnjekeamikmefcjohmhgng
Officiel URL https://chromewebstore.google.com/detail/twitch-chat-overlay/lcljofkmbcdnjekeamikmefcjohmhgng
Beskrivelse Overlay the Twitch chat when in fullscreen mode.
Filstørrelse 25.92 KB
Antal Installationer 3,615
Nuværende Version 1.10
Senest Opdateret 2020-01-21
Udgivelsesdato 2020-01-14
Bedømmelse 3.70/5 Samlet 10 Bedømmelser
Udvikler trmcnvn
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/trmcnvn/twitch-chat-overlay
Hjælpeside-URL https://github.com/trmcnvn/twitch-chat-overlay/issues
Understøttede Sprog 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"
        }
    ]
}