Tyre Killer

Youtube Live Chat filter

什么是Tyre Killer?

Tyre Killer是由dz0开发的Chrome扩展程序,该扩展的主要功能是“Youtube Live Chat filter”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Tyre Killer扩展crx文件

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

扩展使用说明

                        This is a tool help youtubers or mods to stop Youtube live-chat spam.
It provides some tools for filtering live-chat messages
 - Members (badge required)
 - Repeat clip
 - Use the slow mode bug
 - Account (channel) creation time

[update]
  [v0.81] * fix issue no-delay filter not work.
               * fix issue log file name in iframe mode will be undefined.
               * fix issue calls force update too frequency, and also reject messages parsed.
               * messages banned by admins manually are now recorded. It'll take same action to same message automatically.

  [v0.8]  * filter member adds badge-selector to set min filter member level.
             * fix issue that log does not record last 10 messages.

Instructions:
After installation, you will see three additional buttons at the top of the live-chat.
(Note: The live-chat of the video management interface is currently not in scope of this addon, please use "popout chat")

[💤/👁️‍🗨️] main switch button to toggle sleeping mode and watching mode. while in watching mode, menus are controlled by tyre-killer, it takes actions setting in setting panel.

[📝] log button, pop up a panel shows all the messages that filtered. Also a [📥 download button] within that can download log as .xlsx file.

[⚙️] settings, lead a pop up panel contains all filter settings, checkbox on filter title means enable / disable the filter.


Filters:

 - ignore member
   skip following filters if message author is member of channel (badge required). uncheck this if someone paid to be banned.
 * [v0.8] if you are members of the channel, tyre-killer will list all badges in membership page. thus you can choice the min level member to be skip.

 - use the bug of slow mode
   spam may be send by 3rd parts software, and it sometimes ignores slow mode. this filter detect the delay between messages and apply action to who try to break rule.

- focus on long post
  this filter free shorter messages, or them may be misidentified by following filters. uncheck this
may cause those who cheering in live-chat banned.

- message with lots of same words
  while spammers vocabulary is not sufficient, they may loop short sentences to make message  longer. this filter finds this kind of messages, and apply action on spammers.

- find message repeated
  this filter try to get who keep sending the same messages. and I think this one is just useless...

- limit by channel created time
  this one parse channel about page to find out channel created time (because the format of date string, this filter supports only if user language is in en/ja-JP/zh-TW). mods / youtubers can specify the date, and filter the new channels created by spammers.


Action on filter title tells tyre-killer what to do while the filter catches spam.
Actions: 

[❗Mark as spam]: spam message is add a pretty cute pink as background, nothing else.

[🙈Hide spam]: spam message is hided. if you are not an admin of the live-chat, this is the best choice.

[🗑️Delete spam]: spam message hide instantly, and queue a task to delete the message (require admin of live-chat)

[💬silence user (5min)]: spam message hide instantly, and queue a task to block the author temporarily (require admin of live-chat)

[🚫Hide User]: spam message hide instantly, and queue a task to hide the author from channel (require admin of live-chat)


Manual ban
while in watching mode, admin can click on spam messages to bring up a little panel contents 3 buttons to apply admin actions.                    

扩展基本信息

名称 Tyre Killer Tyre Killer
ID fjofmcfmknllkibfppkclgfalhffmmpo
官方URL https://chromewebstore.google.com/detail/tyre-killer/fjofmcfmknllkibfppkclgfalhffmmpo
简介 Youtube Live Chat filter
文件大小 303 KB
安装次数 13
当前版本 0.8.1
更新时间 2021-04-04
上架时间 2021-03-17
开发者 dz0
电子邮箱 [email protected]
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tyre Killer",
    "version": "0.8.1",
    "description": "Youtube Live Chat filter",
    "icons": {
        "16": "images\/tyre-killer-16.png",
        "48": "images\/tyre-killer-48.png",
        "128": "images\/tyre-killer-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/live_chat?*",
                "https:\/\/studio.youtube.com\/live_chat?*"
            ],
            "css": [
                "css\/chat.css"
            ],
            "js": [
                "js\/lib\/md5.js",
                "js\/lib\/exceljs.min.js",
                "js\/config.js",
                "js\/queue.js",
                "js\/filter.js",
                "js\/setting.js",
                "js\/log.js",
                "js\/action.js",
                "js\/chat.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "ui.html",
        "js\/content.js",
        "filters\/apikey.xml",
        "filters\/members.xml",
        "filters\/long.xml",
        "filters\/repeats.xml",
        "filters\/loops.xml",
        "filters\/nodelay.xml",
        "filters\/channel.xml"
    ]
}