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
官方網址 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"
        }
    ]
}