Tyre Killer

Youtube Live Chat filter

Tyre Killer란 무엇입니까?

Tyre Killer은(는) dz0에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Youtube Live Chat filter"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Tyre Killer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}