Twitch - Remove Top Cheer

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

What is Twitch - Remove Top Cheer?

Twitch - Remove Top Cheer is a Chrome extension developed by josh.m.correia, and its main feature is "This extension removes the top cheer from the top of chat on twitch.tv".

Extension Screenshots

screenshot

Download Twitch - Remove Top Cheer Extension CRX File

Download Twitch - Remove Top Cheer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Twitch - Remove Top Cheer Twitch - Remove Top Cheer
ID plhdimgjjobkjbdngkdfenkcdfipjhfc
Official URL https://chrome.google.com/webstore/detail/twitch-remove-top-cheer/plhdimgjjobkjbdngkdfenkcdfipjhfc
Description This extension removes the top cheer from the top of chat on twitch.tv
File Size 39.8 KB
Installation Count 88
Current Version 1.03
Last Updated 2019-02-17
Publish Date 2019-02-17
Rating 4.00/5 Total 4 Ratings
Developer josh.m.correia
Payment Type free
Supported Languages 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"
        }
    ]
}