Youtube Helper

Sometimes you may want to remove or disable some related videos and see comments first. This does that.

Youtube Helper란 무엇입니까?

Youtube Helper은(는) 착한친구에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Sometimes you may want to remove or disable some related videos and see comments first. This does that."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension hides/shows Youtube related videos in vertical and wide mode.
I made this because I wanted to see comments first.

# Devlog has been moved to github.

# Features
1. Toggle collapse Youtube related videos.
2. Automatically redirects Youtube Shorts to normal Youtube player's layout.
3. Hover Youtube player so that you can scroll down while you watching video.
4. Popcat on extension's popup page. (and also click sound!)
5. PIP button
6. Top button
7. Video description shortener (automatically shorten video description)                    

확장 프로그램 기본 정보

이름 Youtube Helper Youtube Helper
ID pnllijckhhmdphamnkihmigimjegedle
공식 URL https://chromewebstore.google.com/detail/youtube-helper/pnllijckhhmdphamnkihmigimjegedle
설명 Sometimes you may want to remove or disable some related videos and see comments first. This does that.
파일 크기 46.81 KB
설치 횟수 147
현재 버전 1.2.2.5
최근 업데이트 2023-09-23
출시 날짜 2022-03-15
평점 5.00/5 총 3 개의 평점
개발자 착한친구
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Binz1mp/Youtube-Related-Videos-Remover
도움말 페이지 URL https://github.com/Binz1mp/Youtube-Related-Videos-Remover
지원되는 언어 en,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Helper",
    "description": "Sometimes you may want to remove or disable some related videos and see comments first. This does that.",
    "version": "1.2.2.5",
    "manifest_version": 3,
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "script_main\/content-script.js",
                "script_main\/button_removerightblank.js",
                "script_main\/button_hover.js",
                "script_main\/button_pip.js",
                "script_main\/button_top.js",
                "script_main\/function_makeitless.js",
                "script_main\/function_shortstonormal.js"
            ],
            "css": [
                "css_main\/style-injector.css"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/16.png",
            "32": "\/images\/32.png",
            "48": "\/images\/48.png",
            "128": "\/images\/128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "sfx\/popcat.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "\/images\/16.png",
        "32": "\/images\/32.png",
        "48": "\/images\/48.png",
        "128": "\/images\/128.png"
    }
}