YouTube Comment Remover

A very simple extension to hide all YouTube comments.

Co to jest YouTube Comment Remover?

YouTube Comment Remover to rozszerzenie Chrome opracowane przez Tim Stephani, a jego główną funkcją jest „A very simple extension to hide all YouTube comments.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Comment Remover

Pobierz pliki rozszerzeń YouTube Comment Remover 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

                        After realizing how horrible the comments section of YouTube is, I decided to create this super simple extension to automatically hide them.

Source available here: https://github.com/timmystephani/youtube_comment_remover

History
---------
v1.0 - First version                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Comment Remover YouTube Comment Remover
ID nglipklighejjehapaodhmipldpljobp
Oficjalny URL https://chrome.google.com/webstore/detail/youtube-comment-remover/nglipklighejjehapaodhmipldpljobp
Opis A very simple extension to hide all YouTube comments.
Rozmiar pliku 33.33 KB
Liczba instalacji 97
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2015-03-16
Data Publikacji 2015-03-16
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Tim Stephani
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Comment Remover",
    "description": "A very simple extension to hide all YouTube comments.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "main.js"
            ]
        }
    ]
}