Mail Sanitiser

Removes everything except the article text from Daily Mail pages

¿Qué es Mail Sanitiser?

Mail Sanitiser es una extensión de Chrome desarrollada por Paul Battley, y su función principal es "Removes everything except the article text from Daily Mail pages".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Mail Sanitiser

Descarga archivos de extensión Mail Sanitiser en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        NOTE: This extension was previously called Mail Cleaner, but has been renamed to avoid trademark infringement.

This is a Chrome extension inspired by Andy Beaumont’s Daily Mail Cleaner Safari extension (http://blog.andybeaumont.com/post/29470498530):

"You know that feeling you get when you accidentally click on a link to an article on the Daily Mail website? You know that red mist that descends when you see that sidebar full of pictures ridiculing celebrities for having cellulite or being overweight? You know how your blood pressure goes through the roof when you accidentally read one of the comments? Well, here’s a safety net for your browser."

If you accidentally visit a Daily Mail page, this extension will replace it with a filtered version, removing the Sidebar of Shame, the comments, and various other junk.

The source code can be found at https://github.com/threedaymonk/mailsanitiser                    

Información Básica de la Extensión

Nombre Mail Sanitiser Mail Sanitiser
ID ncghnblnficlppbkjdnfljpackcjhfma
URL Oficial https://chromewebstore.google.com/detail/mail-sanitiser/ncghnblnficlppbkjdnfljpackcjhfma
Descripción Removes everything except the article text from Daily Mail pages
Tamaño del Archivo 15.51 KB
Cantidad de Instalaciones 29
Versión Actual 1.1.0
Última Actualización 2012-09-11
Fecha de Publicación 2012-09-11
Calificación 3.75/5 Total de 4 Calificaciones
Desarrollador Paul Battley
Tipo de Pago free
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.dailymail.co.uk\/*"
            ],
            "css": [
                "sanitise.css"
            ],
            "js": [
                "sanitise.js"
            ]
        }
    ],
    "description": "Removes everything except the article text from Daily Mail pages",
    "icons": {
        "128": "icon128.png",
        "48": "icon48.png"
    },
    "name": "Mail Sanitiser",
    "version": "1.1.0"
}