TF2Center AdBlock

Block ads on the tf2center.com without triggering anti-adblocker

Qu'est-ce que TF2Center AdBlock ?

TF2Center AdBlock est une extension Chrome développée par Unknown, et sa fonction principale est "Block ads on the tf2center.com without triggering anti-adblocker".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension TF2Center AdBlock

Téléchargez les fichiers d'extension TF2Center AdBlock au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        Extension is blocking advertisements on the tf2center (website dedicated to competitive pickup games for Team Fortress 2) without triggering its anti-adblocker.

Extension for the Blink-based browsers (tested in Chromium and Chrome, but may work in Brave, Vivaldi, Opera, Yandex Browser, etc.)

Keep in mind that other adblocking or privacy enhancing extensions still may trigger tf2center's anti-adblocker and therefore you'll need to disable them for that domain.

Extension is open-source and being distributed under the MIT license.

Changelog: https://github.com/cancerpubs/tf2center-AdBlock#changelog                    

Informations de Base sur l'Extension

Nom TF2Center AdBlock TF2Center AdBlock
ID ggafejbhopolaieibdkojeaiaodcnmbb
URL Officiel https://chromewebstore.google.com/detail/tf2center-adblock/ggafejbhopolaieibdkojeaiaodcnmbb
Description Block ads on the tf2center.com without triggering anti-adblocker
Taille du Fichier 64.16 KB
Nombre d'Installations 93
Version Actuelle 1.2.0
Dernière Mise à Jour 2018-11-20
Date de Publication 2018-11-19
Évaluation 4.67/5 Total 3 Évaluations
Développeur Unknown
Type de Paiement free
Site Web de l'Extension https://github.com/cancerpubs/tf2center-AdBlock
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TF2Center AdBlock",
    "description": "Block ads on the tf2center.com without triggering anti-adblocker",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "version": "1.2.0",
    "manifest_version": 2,
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "38.png"
        },
        "default_title": "TF2Center AdBlock",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "removeads.js"
            ],
            "matches": [
                "https:\/\/tf2center.com\/*",
                "http:\/\/tf2center.com\/*"
            ]
        },
        {
            "js": [
                "help.js"
            ],
            "matches": [
                "https:\/\/tf2center.com\/adblock",
                "http:\/\/tf2center.com\/adblock"
            ]
        },
        {
            "js": [
                "popup.js"
            ],
            "matches": [
                "https:\/\/tf2center.com\/lobbies\/*",
                "http:\/\/tf2center.com\/lobbies\/*",
                "https:\/\/tf2center.com\/lobbies",
                "http:\/\/tf2center.com\/lobbies",
                "https:\/\/tf2center.com\/profile\/*",
                "http:\/\/tf2center.com\/profile\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "128.png"
    ]
}