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 josh.m.correia द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension removes the top cheer from the top of chat on twitch.tv"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Twitch - Remove Top Cheer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
        }
    ]
}