ytcFilter

When Youtube chat is too fast

什么是ytcFilter?

ytcFilter是由Kento Nishi开发的Chrome扩展程序,该扩展的主要功能是“When Youtube chat is too fast”。

扩展截图

screenshot
screenshot

下载ytcFilter扩展crx文件

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

扩展使用说明

                        Capture messages from Youtube chat based on filter rules. It comes with preset in order to filter:

- English tagged messages
- Messages with Japanese characters
- Messages with alphanumeric characters
- Messages from staff

For more customization, It supports the following filters:

* nickname
* message including text
* moderator
* channel owner
* membership
* verified user
* super chat
* regular expression

It works with the standard Youtube chat, but also embedded chat in 3rd party websites, Youtube popout chat. Your filtered message will appear either above Youtube's chat, or in a popout. Youtube's block/report button is integrated to fight against spam.

All messages are archived too so that you can come back to them later.                    

扩展基本信息

名称 ytcFilter ytcFilter
ID mnldnbhgfocmkehnlkeanlhfmopepnko
官方URL https://chromewebstore.google.com/detail/ytcfilter/mnldnbhgfocmkehnlkeanlhfmopepnko
简介 When Youtube chat is too fast
文件大小 1.4 MB
安装次数 12,782
当前版本 2.2.0
更新时间 2021-06-30
上架时间 2020-08-20
评分 4.30/5 共56次评分
开发者 Kento Nishi
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/RomainLK/ytc-filter
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ytcFilter",
    "description": "When Youtube chat is too fast",
    "version": "2.2.0",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    },
    "browser_action": {
        "default_title": "ytcFilter",
        "default_popup": "popup\/popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "web_accessible_resources": [
        "content-style.css",
        "inject.js"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/www.youtube.com\/live_chat*",
                "https:\/\/studio.youtube.com\/video\/*"
            ],
            "all_frames": true,
            "css": [
                "content-style.css"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "browser_specific_settings": {
        "gecko": {
            "id": "{20f2dcdf-6f8d-4aeb-862b-b13174475d9c}",
            "strict_min_version": "48.0"
        }
    }
}