Youtube Hider

This is a Chrome extension to hide videos and images on YouTube.

Youtube Hider란 무엇입니까?

Youtube Hider은(는) Miri Ahn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is a Chrome extension to hide videos and images on YouTube."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Youtube Hider 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo

Update 1.1 (2019/11/25) 
- Added a button to enable or disable all checkboxes.                    

확장 프로그램 기본 정보

이름 Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
공식 URL https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
설명 This is a Chrome extension to hide videos and images on YouTube.
파일 크기 8.85 KB
설치 횟수 60
현재 버전 1.1
최근 업데이트 2019-11-29
출시 날짜 2019-11-29
평점 4.25/5 총 4 개의 평점
개발자 Miri Ahn
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/kameru/youtube-hider/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Hider",
    "version": "1.1",
    "description": "This is a Chrome extension to hide videos and images on YouTube.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "hidingController.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hide_thumb.css",
        "hide_video.css",
        "hide_icon.css",
        "popup.js",
        "hidingController.js"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/hide.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}