YouTube Comment Remover

A very simple extension to hide all YouTube comments.

YouTube Comment Remover là gì?

YouTube Comment Remover là một tiện ích mở rộng Chrome được phát triển bởi Tim Stephani, và tính năng chính của nó là "A very simple extension to hide all YouTube comments.".

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

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YouTube Comment Remover

Tải xuống các tệp mở rộng YouTube Comment Remover 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

                        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                    

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

Tên YouTube Comment Remover YouTube Comment Remover
ID nglipklighejjehapaodhmipldpljobp
URL Chính Thức https://chrome.google.com/webstore/detail/youtube-comment-remover/nglipklighejjehapaodhmipldpljobp
Mô tả A very simple extension to hide all YouTube comments.
Kích Thước Tệp 33.33 KB
Số Lần Cài Đặt 97
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2015-03-16
Ngày Phát Hành 2015-03-16
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Tim Stephani
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}