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

YouBlock은(는) darby.rathbone에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 YouBlock YouBlock
ID ihhpifdmgophogphhddppiclngkbhnal
공식 URL https://chromewebstore.google.com/detail/youblock/ihhpifdmgophogphhddppiclngkbhnal
설명 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…
파일 크기 19.04 KB
설치 횟수 4,084
현재 버전 2.0
최근 업데이트 2017-01-25
출시 날짜 2017-01-25
평점 4.61/5 총 18 개의 평점
개발자 darby.rathbone
결제 유형 free
지원되는 언어 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"
            ]
        }
    ]
}