Tyre Killer

Youtube Live Chat filter

Was ist Tyre Killer?

Tyre Killer ist eine Chrome-Erweiterung, die von dz0 entwickelt wurde, und ihr Hauptmerkmal ist "Youtube Live Chat filter".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Tyre Killer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tyre Killer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Tyre Killer Tyre Killer
ID fjofmcfmknllkibfppkclgfalhffmmpo
Offizielle URL https://chromewebstore.google.com/detail/tyre-killer/fjofmcfmknllkibfppkclgfalhffmmpo
Beschreibung Youtube Live Chat filter
Dateigröße 303 KB
Installationsanzahl 13
Aktuelle Version 0.8.1
Letztes Update 2021-04-04
Veröffentlichungsdatum 2021-03-17
Entwickler dz0
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}