Floating Twitch Chat

Display Twitch-Chat when watching in fullscreen. - Support for FFZ & BTTV Emotes - Change chat position by draging it - Chat…

Co to jest Floating Twitch Chat?

Floating Twitch Chat to rozszerzenie Chrome opracowane przez Lucas, a jego główną funkcją jest „Display Twitch-Chat when watching in fullscreen. - Support for FFZ & BTTV Emotes - Change chat position by draging it - Chat…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Floating Twitch Chat

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

                        Display Twitch-Chat when watching in fullscreen.

- Support for FFZ & BTTV Emotes
- Change chat position by draging it
- Chat appearance is customizable                    

Podstawowe informacje o rozszerzeniu

Nazwa Floating Twitch Chat Floating Twitch Chat
ID fhaenepohcgdhppcnepekkiciccpgphf
Oficjalny URL https://chromewebstore.google.com/detail/floating-twitch-chat/fhaenepohcgdhppcnepekkiciccpgphf
Opis Display Twitch-Chat when watching in fullscreen. - Support for FFZ & BTTV Emotes - Change chat position by draging it - Chat…
Rozmiar pliku 772 KB
Liczba instalacji 119
Aktualna Wersja 1.4
Ostatnia Aktualizacja 2023-06-26
Data Publikacji 2021-02-10
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper Lucas
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Floating Twitch Chat",
    "name": "Floating Twitch Chat",
    "version": "1.4",
    "manifest_version": 2,
    "icons": {
        "32": "assets\/chat32.png",
        "64": "assets\/chat64.png",
        "128": "assets\/chat128.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*.twitch.tv\/*",
        "*:\/\/*.frankerfacez.com\/*",
        "*:\/\/*.betterttv.net\/*",
        "*:\/\/*.jtvnw.net\/*"
    ],
    "background": {
        "scripts": [
            "app\/background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "Floating Twitch Chat",
        "browser_style": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "css": [
                "\/css\/root.css"
            ],
            "js": [
                "\/static\/js\/content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "\/static\/css\/content.css",
        "\/static\/media\/*"
    ]
}