Daily Mail Blocker

Reduce the risk of reading Daily Mail articles!

O que é Daily Mail Blocker?

Daily Mail Blocker é uma extensão do Chrome desenvolvida por Mark Smith, e sua principal característica é "Reduce the risk of reading Daily Mail articles!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Daily Mail Blocker

Baixe arquivos de extensão Daily Mail Blocker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Daily Mail Blocker Daily Mail Blocker
ID liahmomnoplegkhbbkkegmnfcipndjbc
URL Oficial https://chromewebstore.google.com/detail/daily-mail-blocker/liahmomnoplegkhbbkkegmnfcipndjbc
Descrição Reduce the risk of reading Daily Mail articles!
Tamanho do Arquivo 27.76 KB
Contagem de Instalações 17
Versão Atual 1.2
Última Atualização 2015-01-24
Data de Publicação 2015-01-24
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Mark Smith
Tipo de Pagamento free
Idiomas Suportados 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\/*"
    ]
}