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开发的Chrome扩展程序,该扩展的主要功能是“This extension removes the top cheer from the top of chat on twitch.tv”。

扩展截图

screenshot

下载Twitch - Remove Top Cheer扩展crx文件

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