Yet Another YouTube Comment Filter

Filters comments on YouTube.

什么是Yet Another YouTube Comment Filter?

Yet Another YouTube Comment Filter是由Yosuke Mizutani开发的Chrome扩展程序,该扩展的主要功能是“Filters comments on YouTube.”。

扩展截图

screenshot

下载Yet Another YouTube Comment Filter扩展crx文件

下载Yet Another YouTube Comment Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension provides a comment filter on YouTube.

- Language Filter: You can configure the languages you want to see.
- Blocked Words: You can hide the comments that include specific keywords.
- Reply Filter: You can filter replies in addition to independent comments.
- Filter On/Off Button: You can turn on/off the filter for each tab.                    

扩展基本信息

名称 Yet Another YouTube Comment Filter Yet Another YouTube Comment Filter
ID kdmngkpgnecnahcpkdcmbcekonkcbdpc
官方URL https://chromewebstore.google.com/detail/yet-another-youtube-comme/kdmngkpgnecnahcpkdcmbcekonkcbdpc
简介 Filters comments on YouTube.
文件大小 113 KB
安装次数 841
当前版本 0.2.1
更新时间 2022-05-03
上架时间 2021-01-03
评分 4.25/5 共8次评分
开发者 Yosuke Mizutani
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/mogproject/yay-filter
支持的语言 en,ru,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Yet Another YouTube Comment Filter",
    "version": "0.2.1",
    "description": "Filters comments on YouTube.",
    "author": "Yosuke Mizutani",
    "permissions": [
        "storage"
    ],
    "background": {
        "scripts": [
            "js\/browser-polyfill.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/content.js"
            ],
            "css": [
                "css\/yay-filter.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "browser_action": {
        "default_title": "Yay Filter",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icons\/yayFilterIcon16.png",
        "32": "icons\/yayFilterIcon32.png",
        "48": "icons\/yayFilterIcon48.png",
        "96": "icons\/yayFilterIcon96.png",
        "128": "icons\/yayFilterIcon128.png"
    },
    "homepage_url": "https:\/\/github.com\/mogproject\/yay-filter",
    "default_locale": "en"
}