Hide YouTube Comments

Hides all user comments on YouTube. There is no option or button to show the comments again. If you find this extension useful,…

Hide YouTube Comments란 무엇입니까?

Hide YouTube Comments은(는) NefkingSoft에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hides all user comments on YouTube. There is no option or button to show the comments again. If you find this extension useful,…"입니다.

확장 프로그램 스크린샷

screenshot

Hide YouTube Comments 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Hides all user comments on YouTube. There is no option or button to show the comments again.

If you find this extension useful, buy me a Coke, I love Coke: https://paypal.me/michstan
Thanks! :-)

History:
- 0.7.1 (May 4, 2017): Hide live chat on live broadcasts
- 0.7 (May 3, 2017): Updated for the new Material Design YouTube
- 0.6.1 (Dec 12, 2014): Fixed a bug with hidden "Show more" button below video descriptions
- 0.6 (Sep 13, 2014): Updated to work with the recent changes on YouTube + new icon
- 0.5 (Nov 9, 2013): Another change of YouTube comments, another rewrite
- 0.4 (Nov 3, 2013): Updated to work with new YouTube
- 0.3.3 (Mar 22, 2013): Updated to work with renamed comments element id
- 0.3.2 (Mar 13, 2013): New upload to fix the strange manifest file error
- 0.3.1 (Mar 12, 2013): Fixed expanding the video's description.
- 0.3 (Mar 9, 2013): Changed to work with the most recent YouTube redesign. In addition to hiding comments, video's description text is automatically expanded.

Thanks: The thumbs-down icon taken from the WPZOOM Developer Icon Set by wpzoom.com.                    

확장 프로그램 기본 정보

이름 Hide YouTube Comments Hide YouTube Comments
ID kehdmnjmaakacofbgmjgjapbbibhafoh
공식 URL https://chrome.google.com/webstore/detail/hide-youtube-comments/kehdmnjmaakacofbgmjgjapbbibhafoh
설명 Hides all user comments on YouTube. There is no option or button to show the comments again. If you find this extension useful,…
파일 크기 11.37 KB
설치 횟수 224,251
현재 버전 0.7.3
최근 업데이트 2023-02-28
출시 날짜 2019-06-05
평점 4.77/5 총 899 개의 평점
개발자 NefkingSoft
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide YouTube Comments",
    "version": "0.7.3",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "youtube.css"
            ],
            "js": [
                "script.js"
            ],
            "matches": [
                "http:\/\/*.youtube.com\/*",
                "https:\/\/*.youtube.com\/*"
            ],
            "run_at": "document_start"
        },
        {
            "js": [
                "scripts.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "128": "icons\/128.png",
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png"
    }
}