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