Daily Mail Blocker

Reduce the risk of reading Daily Mail articles!

Was ist Daily Mail Blocker?

Daily Mail Blocker ist eine Chrome-Erweiterung, die von Mark Smith entwickelt wurde, und ihr Hauptmerkmal ist "Reduce the risk of reading Daily Mail articles!".

Erweiterungsscreenshots

screenshot

Daily Mail Blocker-Erweiterungs-CRX-Datei herunterladen

Laden Sie Daily Mail 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

                        This extension will prevent you from accidentally finding yourself reading the Daily Mail website.

If you accidentally click on a link to the Daily Mail, you will be redirected to the Guardian, which is a much more reputable publication.

To prevent accidentally clicking on links to the Daily Mail, a small warning icon will appear in the address bar if you are viewing a page that links to the Daily Mail.                    

Grundlegende Informationen zur Erweiterung

Name Daily Mail Blocker Daily Mail Blocker
ID liahmomnoplegkhbbkkegmnfcipndjbc
Offizielle URL https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc
Beschreibung Reduce the risk of reading Daily Mail articles!
Dateigröße 27.76 KB
Installationsanzahl 17
Aktuelle Version 1.2
Letztes Update 2015-01-24
Veröffentlichungsdatum 2015-01-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Mark Smith
Zahlungsart free
Unterstützte Sprachen en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Daily Mail Blocker",
    "version": "1.2",
    "manifest_version": 2,
    "description": "Reduce the risk of reading Daily Mail articles!",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png",
        "256": "icon256.png"
    },
    "background": {
        "scripts": [
            "blocker.js",
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "icon128.png",
        "default_title": "There are Daily Mail links in this page!"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/www.dailymail.co.uk\/*"
    ]
}