YouTube Sub Hider

Extension that hides specified subscriptions

YouTube Sub Hider क्या है?

YouTube Sub Hider bggrund द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension that hides specified subscriptions"।

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

screenshot
screenshot

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

crx प्रारूप में YouTube Sub Hider एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Simple extension that hides specified YouTube channels from your subscriptions page.

Maybe a channel has recently filled your feed with videos you aren't interested in. Maybe a channel started posting a video series you aren't interested in, but you want to remain subscribed for future content. This extension let's you toggle a channel's videos from appearing in your subscription feed without unsubscribing from the channel.

Features:
-"Hide" button next to the channel name on each video
-Popup menu that allows you to enter channels to hide manually, toggle whether a hidden channel is enabled, remove channels that have been hidden, and toggle the extension altogether.
-Saves channel data to your browser for persistence between sessions
-Continues hiding specified channels as you scroll through your subscription feed

Source code: https://github.com/bggrund/YouTubeSubHider                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Sub Hider YouTube Sub Hider
ID egehbpolcfiodjjnkmlpfegegpogcefm
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-sub-hider/egehbpolcfiodjjnkmlpfegegpogcefm
विवरण Extension that hides specified subscriptions
फ़ाइल का आकार 13.05 KB
स्थापना संख्या 95
वर्तमान संस्करण 1.2
अंतिम अपडेट 2023-06-12
प्रकाशन तिथि 2021-07-20
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर bggrund
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bggrund/YouTubeSubHider
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Sub Hider",
    "version": "1.2",
    "description": "Extension that hides specified subscriptions",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png",
        "16": "icon16.png"
    },
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage",
        "*:\/\/*.youtube.com\/feed\/subscriptions"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/feed\/subscriptions"
            ],
            "js": [
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "run_at": "document_idle"
        }
    ]
}