Twitch - Remove Top Cheer

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

Τι είναι το Twitch - Remove Top Cheer;

Το Twitch - Remove Top Cheer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον josh.m.correia, και η κύρια λειτουργία του είναι "This extension removes the top cheer from the top of chat on twitch.tv".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Twitch - Remove Top Cheer

Λήψη αρχείων επέκτασης Twitch - Remove Top Cheer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Twitch - Remove Top Cheer Twitch - Remove Top Cheer
ID plhdimgjjobkjbdngkdfenkcdfipjhfc
Επίσημο URL https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc
Περιγραφή This extension removes the top cheer from the top of chat on twitch.tv
Μέγεθος Αρχείου 39.8 KB
Αριθμός Εγκαταστάσεων 88
Τρέχουσα Έκδοση 1.03
Τελευταία Ενημέρωση 2019-02-17
Ημερομηνία Δημοσίευσης 2019-02-17
Αξιολόγηση 4.00/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής josh.m.correia
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
        }
    ]
}