TrollBlocker

This extension lets you block user comments on the sports pages of the Lancashire Telegraph.

TrollBlocker란 무엇입니까?

TrollBlocker은(는) Troll Blocker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension lets you block user comments on the sports pages of the Lancashire Telegraph."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

TrollBlocker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        *** Now updated to support March 2021 web site update ***

You are reading an article about your local football team and you scroll to the bottom of the article to read the comments from fans only to find that half the comments are meaningless drivel from the trolls and idiots who support one of your rivals (banter is good but most of these guys are incapable of an intelligent discussion).

Troll Blocker is the solution!

This Google Chrome (TM) Extension allows you to block comments from users on the pages of the Lancashire Telegraph.

Blocked users are remembered between sessions and can be blocked or unblocked simply by clicking the block or unblock hyperlink after their user name.

Hopefully Troll Blocker will make reading about your favourite team a more enjoyable experience.


I originally developed the extension for my own use but decided to share it. It is is my first foray into Javascript so it might not be quite as efficient as it could be. The original code was heavily based on HNBlocker by Finbarr Taylor (also available on Chrome Web Store) but has been heavily modified since.

You are free to borrow the source code for your own project but please provide credit if you do so. There are several articles on the internet that describe how to see the source code of an extension.

Happy Blocking!                    

확장 프로그램 기본 정보

이름 TrollBlocker TrollBlocker
ID dnpeafenbkimmlhcidmhodcbllfcfgki
공식 URL https://chromewebstore.google.com/detail/trollblocker/dnpeafenbkimmlhcidmhodcbllfcfgki
설명 This extension lets you block user comments on the sports pages of the Lancashire Telegraph.
파일 크기 44.75 KB
설치 횟수 131
현재 버전 4.5
최근 업데이트 2021-03-14
출시 날짜 2019-11-11
평점 3.86/5 총 7 개의 평점
개발자 Troll Blocker
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "TrollBlocker",
    "description": "This extension lets you block user comments on the sports pages of the Lancashire Telegraph.",
    "version": "4.5",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "https:\/\/www.lancashiretelegraph.co.uk\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "contentscript.js"
            ]
        }
    ]
}