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文件

下载Youtube Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}