Keyword Blocker

Web Extension to block unwanted videos and channels

Keyword Blocker क्या है?

Keyword Blocker Rik Harink द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Web Extension to block unwanted videos and channels"।

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

screenshot
screenshot

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

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

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

                        This Chrome extension can block YouTube videos or channels from view based on keywords you can specify.
It features a very basic password protection and the block message is user-customizable.

Originally this was developed for a person who is easily scared and needed to be protected from certain YouTube searches. Because there was no easy way to do this I developed this extension.

The sourcecode is available on github at https://github.com/Meidor/keywordblocker                    

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

नाम Keyword Blocker Keyword Blocker
ID pbgacppomjfpheddhifkdkklddnolnpg
आधिकारिक URL https://chrome.google.com/webstore/detail/keyword-blocker/pbgacppomjfpheddhifkdkklddnolnpg
विवरण Web Extension to block unwanted videos and channels
फ़ाइल का आकार 84.9 KB
स्थापना संख्या 9,000
वर्तमान संस्करण 2.2.1
अंतिम अपडेट 2020-02-04
प्रकाशन तिथि 2020-02-04
रेटिंग 3.25/5 कुल 99 रेटिंग्स
डेवलपर Rik Harink
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.keywordblocker.nl
सहायता पृष्ठ URL https://github.com/Meidor/keywordblocker/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Web Extension to block unwanted videos and channels",
    "version": "2.2.1",
    "name": "Keyword Blocker",
    "manifest_version": 2,
    "icons": {
        "16": "img\/icon-16.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.bundle.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "img\/icon-19.png",
            "38": "img\/icon-38.png"
        },
        "default_title": "Keyword Blocker",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "css": [
                "styles\/content_script.css"
            ],
            "js": [
                "content_script.bundle.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "contextMenus",
        "*:\/\/www.youtube.com\/*"
    ]
}