Youtube Comment Filter

Chrome extension that filters Youtube comments

What is Youtube Comment Filter?

Youtube Comment Filter is a Chrome extension developed by jasonleeapps, and its main feature is "Chrome extension that filters Youtube comments".

Extension Screenshots

screenshot

Download Youtube Comment Filter Extension CRX File

Download Youtube Comment Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A Chrome extension that lets you filter YouTube comments.

Navigate to a YouTube video and enter what words you would like to filter out!                    

Extension Basic Information

Name Youtube Comment Filter Youtube Comment Filter
ID dbdnmgjgahjbdkonhiplfoljljebfchm
Official URL https://chromewebstore.google.com/detail/youtube-comment-filter/dbdnmgjgahjbdkonhiplfoljljebfchm
Description Chrome extension that filters Youtube comments
File Size 13.05 KB
Installation Count 417
Current Version 1.0
Last Updated 2020-06-14
Publish Date 2020-06-10
Rating 3.75/5 Total 4 Ratings
Developer jasonleeapps
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Comment Filter",
    "version": "1.0",
    "description": "Chrome extension that filters Youtube comments",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "images\/yt_icon_16.png",
        "48": "images\/yt_icon_48.png",
        "128": "images\/yt_icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/watch?v=*"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}