YouBlock

Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…

YouBlock là gì?

YouBlock là một tiện ích mở rộng Chrome được phát triển bởi darby.rathbone, và tính năng chính của nó là "Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…".

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

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

                        Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not block old messages that are in the chat before loading. You cannot block the people who sent the messages before your youtube loaded. Feel free to assist in the programming but looking at the github link at the bottom of this.

This is a feature for YouTube streaming videos chat. When there are a bunch of spammers and reporting them for spam doesn't seem to be doing anything. All you have to do is install this refresh the streaming page and then "Report message" them once and they will no longer show up in your chat.

I added the persistence that I originally wanted. To block someone permanently just block them once. To remove them from the blocked list now you need to click options in extensions and remove them from the list by clicking the X next to their name.

I need to add some features still but you can see my progress or assist here https://github.com/darbicus/youBlock . You can also submit reports of issues there or request features.                    

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

Tên YouBlock YouBlock
ID ihhpifdmgophogphhddppiclngkbhnal
URL Chính Thức https://chromewebstore.google.com/detail/youblock/ihhpifdmgophogphhddppiclngkbhnal
Mô tả Since the recent update in YouTube the extension is a little buggy but it works with new messages... most of the time. It will not…
Kích Thước Tệp 19.04 KB
Số Lần Cài Đặt 4,084
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2017-01-25
Ngày Phát Hành 2017-01-25
Đánh Giá 4.61/5 Tổng số 18 Đánh Giá
Nhà Phát Triển darby.rathbone
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouBlock",
    "version": "2.0",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "storage": {
        "managed_schema": "schema.json"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "ContentScript.js"
            ]
        }
    ]
}