Youtube Helper

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

Youtube Helper क्या है?

Youtube Helper 착한친구 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Sometimes you may want to remove or disable some related videos and see comments first. This does that."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Youtube Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}