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란 무엇입니까?

Youtube Live Chat : Troll Starver은(는) joenoonan27에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Youtube Live Chat : Troll Starver Youtube Live Chat : Troll Starver
ID bcikajlocgcppeihfloalfdnpgfibdpk
공식 URL https://chromewebstore.google.com/detail/youtube-live-chat-troll-s/bcikajlocgcppeihfloalfdnpgfibdpk
설명 This extension doesn't show comments from people you don't feel like putting up with in live stream comments box.
파일 크기 476 KB
설치 횟수 972
현재 버전 1.85
최근 업데이트 2018-05-22
출시 날짜 2018-05-22
평점 4.16/5 총 37 개의 평점
개발자 joenoonan27
결제 유형 free
지원되는 언어 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\/*"
    ]
}