Big Brother Blocker

This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.

Was ist Big Brother Blocker?

Big Brother Blocker ist eine Chrome-Erweiterung, die von ville.pv entwickelt wurde, und ihr Hauptmerkmal ist "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.".

Erweiterungsscreenshots

screenshot
screenshot

Big Brother Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Big Brother Blocker-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        The extension will look for BB or Big Brother related content from mtv.fi, iltasanomat.fi, iltalehti.fi and hs.fi news websites and remove them. See screenshots.                    

Grundlegende Informationen zur Erweiterung

Name Big Brother Blocker Big Brother Blocker
ID gjoppkgfoenmfemaobkefghgnfejoood
Offizielle URL https://chrome.google.com/webstore/detail/big-brother-blocker/gjoppkgfoenmfemaobkefghgnfejoood
Beschreibung This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.
Dateigröße 76.59 KB
Installationsanzahl 40
Aktuelle Version 0.0.1
Letztes Update 2014-09-02
Veröffentlichungsdatum 2014-09-02
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler ville.pv
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Big Brother Blocker",
    "description": "This plugin will remove all Big Brother and BB -related content from the most popular Finnish news websites.",
    "version": "0.0.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "http:\/\/*\/*"
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.youtube.com\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/iltasanomat.fi\/*",
                "http:\/\/www.iltasanomat.fi\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "iltasanomat.js"
            ]
        },
        {
            "matches": [
                "http:\/\/www.mtv.fi\/*",
                "http:\/\/mtv.fi\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "mtv.js"
            ]
        },
        {
            "matches": [
                "http:\/\/iltalehti.fi\/*",
                "http:\/\/www.iltalehti.fi\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "iltalehti.js"
            ]
        },
        {
            "matches": [
                "http:\/\/hs.fi\/*",
                "http:\/\/www.hs.fi\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "hs.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    }
}