Hide Twitch Chat Users

Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).

Hide Twitch Chat Users란 무엇입니까?

Hide Twitch Chat Users은(는) mikeyaworski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas)."입니다.

확장 프로그램 스크린샷

screenshot

Hide Twitch Chat Users 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Click on the icon in your chrome menu to edit settings. Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).

Check the "hide" checkbox in order for this to take effect. On all Twitch pages, a script will run every 100 milliseconds to hide all messages in chats from the usernames you wrote down.

If you make any changes to the usernames or the checkbox, refresh the webpage for them to take effect.                    

확장 프로그램 기본 정보

이름 Hide Twitch Chat Users Hide Twitch Chat Users
ID fcijjhjjaiacddgmgcmlhoabkhmmfiib
공식 URL https://chromewebstore.google.com/detail/hide-twitch-chat-users/fcijjhjjaiacddgmgcmlhoabkhmmfiib
설명 Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and/or commas).
파일 크기 38.64 KB
설치 횟수 326
현재 버전 2.1.0
최근 업데이트 2023-04-29
출시 날짜 2016-08-14
평점 3.78/5 총 9 개의 평점
개발자 mikeyaworski
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mikeyaworski/Hide-Twitch-Chat-Users
도움말 페이지 URL https://github.com/mikeyaworski/Hide-Twitch-Chat-Users/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide Twitch Chat Users",
    "description": "Enter the names of usernames you would like to hide messages from in Twitch.tv chats (split by whitespace and\/or commas).",
    "version": "2.1.0",
    "manifest_version": 3,
    "browser_specific_settings": {
        "gecko": {
            "id": "{6b982795-4e75-4bc0-a1d8-616f4eb39970}"
        }
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.twitch.tv\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}