Twitch - Remove Top Cheer

This extension removes the top cheer from the top of chat on twitch.tv

Co to jest Twitch - Remove Top Cheer?

Twitch - Remove Top Cheer to rozszerzenie Chrome opracowane przez josh.m.correia, a jego główną funkcją jest „This extension removes the top cheer from the top of chat on twitch.tv”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Twitch - Remove Top Cheer

Pobierz pliki rozszerzeń Twitch - Remove Top Cheer 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 is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv                    

Podstawowe informacje o rozszerzeniu

Nazwa Twitch - Remove Top Cheer Twitch - Remove Top Cheer
ID plhdimgjjobkjbdngkdfenkcdfipjhfc
Oficjalny URL https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc
Opis This extension removes the top cheer from the top of chat on twitch.tv
Rozmiar pliku 39.8 KB
Liczba instalacji 88
Aktualna Wersja 1.03
Ostatnia Aktualizacja 2019-02-17
Data Publikacji 2019-02-17
Ocena 4.00/5 Łącznie 4 Oceny
Deweloper josh.m.correia
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Twitch - Remove Top Cheer",
    "description": "This extension removes the top cheer from the top of chat on twitch.tv",
    "version": "1.03",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "background": {
        "scripts": [
            "jquery-3.2.1.min.js",
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "remove_top_cheer.js"
            ],
            "run_at": "document_end"
        }
    ]
}