Daily Mail Blocker

Reduce the risk of reading Daily Mail articles!

Vad är Daily Mail Blocker?

Daily Mail Blocker är en Chrome-tillägg utvecklad av Mark Smith, och dess huvudfunktion är "Reduce the risk of reading Daily Mail articles!".

Tilläggsskärmbilder

screenshot

Ladda ner Daily Mail Blocker-förlängningens CRX-fil

Ladda ner Daily Mail Blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Daily Mail Blocker Daily Mail Blocker
ID liahmomnoplegkhbbkkegmnfcipndjbc
Officiell webbadress https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc
Beskrivning Reduce the risk of reading Daily Mail articles!
Filstorlek 27.76 KB
Antal Installationer 17
Aktuell Version 1.2
Senast Uppdaterad 2015-01-24
Publiceringsdatum 2015-01-24
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Mark Smith
Betalningssätt free
Stödda Språk 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\/*"
    ]
}