TrollBlocker

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

Wat is TrollBlocker?

TrollBlocker is een Chrome-extensie ontwikkeld door Troll Blocker, en de belangrijkste functie is "This extension lets you block user comments on the sports pages of the Lancashire Telegraph.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie TrollBlocker

Download TrollBlocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        *** 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!                    

Basisinformatie over de Extensie

Naam TrollBlocker TrollBlocker
ID dnpeafenbkimmlhcidmhodcbllfcfgki
Officiële URL https://chromewebstore.google.com/detail/trollblocker/dnpeafenbkimmlhcidmhodcbllfcfgki
Beschrijving This extension lets you block user comments on the sports pages of the Lancashire Telegraph.
Bestandsgrootte 44.75 KB
Aantal Installaties 131
Huidige Versie 4.5
Laatst Bijgewerkt 2021-03-14
Publicatiedatum 2019-11-11
Beoordeling 3.86/5 Totaal 7 Beoordelingen
Ontwikkelaar Troll Blocker
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}