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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
        }
    ]
}