YouTube Blocker

Block unwanted YouTube channels.

YouTube Blocker क्या है?

YouTube Blocker Przemysław Tyczyński द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Block unwanted YouTube channels."।

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

screenshot
screenshot
screenshot

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

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

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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

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

नाम YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
आधिकारिक URL https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
विवरण Block unwanted YouTube channels.
फ़ाइल का आकार 96.3 KB
स्थापना संख्या 1,036
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2020-04-21
प्रकाशन तिथि 2020-04-21
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर Przemysław Tyczyński
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://youtube-blocker.tyczynski.dev
सहायता पृष्ठ URL https://youtube-blocker.tyczynski.dev
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}