Twitch - Remove Top Cheer

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

Co je Twitch - Remove Top Cheer?

Twitch - Remove Top Cheer je rozšíření Chrome vyvinuté josh.m.correia, a jeho hlavní funkcí je „This extension removes the top cheer from the top of chat on twitch.tv“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitch - Remove Top Cheer

Stáhněte si soubory rozšíření Twitch - Remove Top Cheer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This is a very simple extension that has one function: to remove the top cheer from the top of chat on twitch.tv                    

Základní Informace o Rozšíření

Název Twitch - Remove Top Cheer Twitch - Remove Top Cheer
ID plhdimgjjobkjbdngkdfenkcdfipjhfc
Oficiální URL https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc
Popis This extension removes the top cheer from the top of chat on twitch.tv
Velikost souboru 39.8 KB
Počet instalací 88
Aktuální Verze 1.03
Poslední Aktualizace 2019-02-17
Datum Vydání 2019-02-17
Hodnocení 4.00/5 Celkem 4 Hodnocení
Vývojář josh.m.correia
Typ Platby free
Podporované Jazyky 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"
        }
    ]
}