ytcFilter

When Youtube chat is too fast

ytcFilter là gì?

ytcFilter là một tiện ích mở rộng Chrome được phát triển bởi Kento Nishi, và tính năng chính của nó là "When Youtube chat is too fast".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng ytcFilter

Tải xuống các tệp mở rộng ytcFilter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ytcFilter ytcFilter
ID mnldnbhgfocmkehnlkeanlhfmopepnko
URL Chính Thức https://chromewebstore.google.com/detail/ytcfilter/mnldnbhgfocmkehnlkeanlhfmopepnko
Mô tả When Youtube chat is too fast
Kích Thước Tệp 1.4 MB
Số Lần Cài Đặt 12,782
Phiên Bản Hiện Tại 2.2.0
Cập Nhật Lần Cuối 2021-06-30
Ngày Phát Hành 2020-08-20
Đánh Giá 4.30/5 Tổng số 56 Đánh Giá
Nhà Phát Triển Kento Nishi
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/RomainLK/ytc-filter
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}