Daily Mail Blocker
Reduce the risk of reading Daily Mail articles!
Wat is Daily Mail Blocker?
Daily Mail Blocker is een Chrome-extensie ontwikkeld door Mark Smith, en de belangrijkste functie is "Reduce the risk of reading Daily Mail articles!".
Extensie Screenshots
Download het CRX-bestand van de extensie Daily Mail Blocker
Download Daily Mail Blocker-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
                        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.                     Basisinformatie over de Extensie
| Naam |   |  
| ID | liahmomnoplegkhbbkkegmnfcipndjbc | 
| Officiële URL | https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc | 
| Beschrijving | Reduce the risk of reading Daily Mail articles! | 
| Bestandsgrootte | 27.76 KB | 
| Aantal Installaties | 17 | 
| Huidige Versie | 1.2 | 
| Laatst Bijgewerkt | 2015-01-24 | 
| Publicatiedatum | 2015-01-24 | 
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen | 
| Ontwikkelaar | Mark Smith | 
| Betalingswijze | free | 
| Ondersteunde Talen | 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\/*"
    ]
}  |  |