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.

Co to jest Youtube Live Chat : Troll Starver?

Youtube Live Chat : Troll Starver to rozszerzenie Chrome opracowane przez joenoonan27, a jego główną funkcją jest „This extension doesn't show comments from people you don't feel like putting up with in live stream comments box.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Youtube Live Chat : Troll Starver

Pobierz pliki rozszerzeń Youtube Live Chat : Troll Starver w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Youtube Live Chat : Troll Starver Youtube Live Chat : Troll Starver
ID bcikajlocgcppeihfloalfdnpgfibdpk
Oficjalny URL https://chromewebstore.google.com/detail/youtube-live-chat-troll-s/bcikajlocgcppeihfloalfdnpgfibdpk
Opis This extension doesn't show comments from people you don't feel like putting up with in live stream comments box.
Rozmiar pliku 476 KB
Liczba instalacji 972
Aktualna Wersja 1.85
Ostatnia Aktualizacja 2018-05-22
Data Publikacji 2018-05-22
Ocena 4.16/5 Łącznie 37 Oceny
Deweloper joenoonan27
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}