modekun

moderate live chat

modekun là gì?

modekun là một tiện ích mở rộng Chrome được phát triển bởi momochi, và tính năng chính của nó là "moderate live chat".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng modekun 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

                        Live Chat Trolls Automatically hide comments.
Currently, only Youtube and Mildom and Twitch are supported.
The "repeat words filter" has been confirmed to work only in Japanese.

It supports 5 types of vandalism: continuous throwing, word repetition, NG word, character limit, and posting frequency.

Since everything is executed on the browser, no data is sent to any server.

ver 2.0.0
- Fixed a bug that we couldn't save parameter correctly.

- A new option "Use common parameters" has been added. Enabling this option allows the use of common parameters regardless of the streamer.

- Manifest V3 is now supported and performance has been improved.

ver 1.1.5
Fixed a bug which parameters could not be set for each streamer in Mildom.

ver 1.1.4
You can now register NG words at once.
For example, you can prepare a file for NG word at hand and copy and paste it to register a common NG word for each distributor.

ver 1.1.3
- I fixed the bug of unintended parameter reset
- I fixed the bug which you can't save NG word

ver 1.1.2
You can now change the parameters for each streamer on each site.

ver 1.1.1
Added an option that can be completely hidden.
Added support for Firefox.
You can install it here. https://addons.mozilla.org/ja/firefox/addon/modekun/

ver 1.1.0
Support English.

ver 1.0.9
You can now set a minimum run interval of up to 50ms.
Changed to include comments that have already been hidden in the judgment target of continuous throwing / posting frequency.

ver 1.0.8
Added support for Twitch.
You can now optionally set whether to apply the NG word filter and character limit filter to the poster name.

ver 1.0.7
Added option tab.
From here you can now set whether to enable modekun.
Also, you can now set whether to show the reason why it was hidden.

ver 1.0.6
As a countermeasure when the comment is hidden by mistake, it has been changed so that it will be displayed again when the cursor is placed on the hidden comment.
Fixed a bug that parameters already registered when upgrading modekun are returned to the default values.

ver 1.0.5
In order to prevent long sentences, a new parameter called "upper limit of character number" can be set.
Based on the maximum number of characters on Youtube, you can set up to 200 characters.

ver 1.0.4
In order to prevent the same user from continuously throwing arbitrary character strings, a new parameter called "post frequency" can be set.
Of the number of comments set in "Number of comments to be controlled", it will be hidden when the number of posts from the same user exceeds the threshold.                    

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

Tên modekun modekun
ID lnlgicokoimnfncigoknlbiicjfbbejp
URL Chính Thức https://chromewebstore.google.com/detail/modekun/lnlgicokoimnfncigoknlbiicjfbbejp
Mô tả moderate live chat
Kích Thước Tệp 14.84 MB
Số Lần Cài Đặt 2,409
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-05-17
Ngày Phát Hành 2021-06-01
Đánh Giá 3.90/5 Tổng số 21 Đánh Giá
Nhà Phát Triển momochi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/tjmtmmnk/modekun
Ngôn Ngữ Được Hỗ Trợ en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "modekun",
    "description": "moderate live chat",
    "version": "2.0.0",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'none'"
    },
    "action": {
        "default_title": "modekun",
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "64": "icon64.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.mildom.com\/*",
                "https:\/\/www.twitch.tv\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "activeTab",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "kuromoji\/dict\/*",
                "js\/worker.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.mildom.com\/*",
                "https:\/\/www.twitch.tv\/*"
            ],
            "extension_ids": [
                "lnlgicokoimnfncigoknlbiicjfbbejp"
            ]
        }
    ],
    "default_locale": "ja"
}