Youtube Live Chat : Troll Starver

This extension doesn't show comments from people you don't feel like putting up with in live stream comments box.

Youtube Live Chat : Troll Starver là gì?

Youtube Live Chat : Troll Starver là một tiện ích mở rộng Chrome được phát triển bởi joenoonan27, và tính năng chính của nó là "This extension doesn't show comments from people you don't feel like putting up with in live stream comments box.".

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

Tải xuống tệp CRX của tiện ích mở rộng Youtube Live Chat : Troll Starver

Tải xuống các tệp mở rộng Youtube Live Chat : Troll Starver 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

                        Newest Release 1.84 **********  2/1/18

((VIDEO DEMO - https://www.youtube.com/watch?v=cCrwyIKI_Jo  Don't know why google can't show it in the middle of the screen right now, but whatever...))

Trolls. We could do without them, am i right?

Ignore the replies of anyone you choose with this extension in Youtube Live Chatrooms.

HOW TO :

FILTER TROLL
Drag and drop the icon about onto the troll icon. A new entry will show up in the TROLLS table. Their comments won't show up in your chat anymore.

UNFILTER TROLL
Click the (x) button in the table next to their name,

EXPORT NAMES IN BULK
Click the 'export names' button below the table and all the names you have accrued so far are in the text box. It is just a single username per line. Copy and Paste. Easy.

IMPORT NAMES IN BULK
Click the 'import names' button below the table and Either
  1) Paste an exported list of names and click import button.
  2) Type one troll's username verbatim per line and then click the import button.

PS
(As long as you are in a normal Youtube live chatroom, not the special "Night Mode in Youtube Gaming" which accesses a chatroom through an iframe, then this will work. )

CODE
https://github.com/Joe11000/Troll-Starver-for-Youtube-Live-Chat


RELEASE NOTES

RELEASE 1.5 **********  9/9/16
  * Add import and export functionality for troll names.  Just encase each name in single quotes for import. ie 'Name 1' 'Name 2' 'Name 3'
  * made the "clear chat" button a little prettier.

RELEASE 1.6 **********  9/12/16
  * There was an import and export bug involving  regex with quotes. I removed the extra complexity and no encasing quotes or escaping single quotes are needed anymore. For importing, simply put one username per line without unnecessary spaces at the end of a line.


RELEASE 1.7 **********  12/6/16
  * Added the ability to expand and collapse the Troll Blocker table. If the table is collapsed and the user drags a troll's icon, as they normally would, the table will automatically open until. If the user drops the icon in the correct location, then the table will return to the collapsed state. If the user drops the icon in the wrong location, then the table will remain open.

RELEASE 1.8.3 **********  1/26/18
  * restyled the css with css grid styling and fixed things that youtube broke with their updates to their chatroom.
  Temporary Release to fix larger problems.
  Known Bugs:
  1) Beyond +1000 troll names the names overflow in the first column. That is a CSS problem that chrome has to resolve resolve soon on it's own.
  2) After clicking "Clear Chat" the following messages appear shakey or just appear only one at a time or just weird in general. That is because Chrome is using javascript behind the scenes to determine where the bottom of the chatroom is and to try and position itself to be at the bottom of it. Chrome Extensions con not access native javascript on a web page by their very nature. So until they Youtube stops doing weird calculations behind the scenes, there is not much I can do at the moment.
  3) Do not use extra spacing or unnecessary blank lines when importing troll channel names otherwise those lines or the previous lines will understand it as the wrong username and won't block it correctly.
 
RELEASE 1.84 **********  2/1/18
  * removed outline from Clear Chat Button
  * capitalized first letter of all words
  * Remove  from "Name" header on import
  * Filter out paid comments of trolls
  * On load, decrease the amount of bulk imported from 50 -> 25 and increase the amount of time to lapse so that the video doesn't decrease in quality and decreases the lagging on the chatbox.                    

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

Tên Youtube Live Chat : Troll Starver Youtube Live Chat : Troll Starver
ID bcikajlocgcppeihfloalfdnpgfibdpk
URL Chính Thức https://chromewebstore.google.com/detail/youtube-live-chat-troll-s/bcikajlocgcppeihfloalfdnpgfibdpk
Mô tả This extension doesn't show comments from people you don't feel like putting up with in live stream comments box.
Kích Thước Tệp 476 KB
Số Lần Cài Đặt 972
Phiên Bản Hiện Tại 1.85
Cập Nhật Lần Cuối 2018-05-22
Ngày Phát Hành 2018-05-22
Đánh Giá 4.16/5 Tổng số 37 Đánh Giá
Nhà Phát Triển joenoonan27
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Youtube Live Chat : Troll Starver",
    "version": "1.85",
    "default_locale": "en",
    "description": "This extension doesn't show comments from people you don't feel like putting up with in live stream comments box.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Youtube Live Chat : Troll Starver"
    },
    "icons": {
        "16": "images\/trollx16.png",
        "48": "images\/trollx48.png",
        "128": "images\/trollx128.png"
    },
    "content_scripts": [],
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "http:\/\/www.youtube.com\/*",
        "https:\/\/www.youtube.com\/*",
        "http:\/\/www.gaming.youtube.com\/*",
        "https:\/\/www.gaming.youtube.com\/*",
        "http:\/\/youtube.com\/*",
        "https:\/\/youtube.com\/*",
        "http:\/\/gaming.youtube.com\/*",
        "https:\/\/gaming.youtube.com\/*"
    ],
    "web_accessible_resources": [
        "images\/*"
    ]
}