CiRF The Guardian

Comment is Really Free on Guardian articles

¿Qué es CiRF The Guardian?

CiRF The Guardian es una extensión de Chrome desarrollada por https://commentisreallyfree.com, y su función principal es "Comment is Really Free on Guardian articles".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión CiRF The Guardian

Descarga archivos de extensión CiRF The Guardian 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

                        Allows comments to be made on any article at theguardian.com.

You need to be a registered Guardian user, or create a new user account at theguardian.com.

It works almost exactly the same as the Guardian comments facility but we've included the ability to edit your own comments.

Comments are community moderated by other people who use this extension.

No data is sent to theguardian.com servers, it is all sent securely using HTTPS to our own servers.

We do not know your email address or your theguardian.com password.

Version 1.1 update on May 25th, 2016 to include https pages on theguardian site.                    

Información Básica de la Extensión

Nombre CiRF The Guardian CiRF The Guardian
ID lcfggnjbfkifcdlodneooflgidjdncak
URL Oficial https://chrome.google.com/webstore/detail/cirf-the-guardian/lcfggnjbfkifcdlodneooflgidjdncak
Descripción Comment is Really Free on Guardian articles
Tamaño del Archivo 46.41 KB
Cantidad de Instalaciones 15
Versión Actual 1.1
Última Actualización 2016-05-25
Fecha de Publicación 2016-05-25
Desarrollador https://commentisreallyfree.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://commentisreallyfree.com/CiRFTheGuardian/
URL de la Página de Ayuda https://commentisreallyfree.com/CiRFTheGuardian/Home/FAQ
URL de la Página de Política de Privacidad https://commentisreallyfree.com/CiRFtheGuardian/Home/UserAgreement
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CiRF The Guardian",
    "description": "Comment is Really Free on Guardian articles",
    "version": "1.1",
    "permissions": [
        "activeTab",
        "cookies",
        "http:\/\/www.theguardian.com\/*",
        "https:\/\/www.theguardian.com\/*",
        "https:\/\/profile.theguardian.com\/*",
        "https:\/\/avatar.guim.co.uk\/*",
        "http:\/\/localhost\/*",
        "https:\/\/commentisreallyfree.com\/*"
    ],
    "browser_action": {
        "default_icon": "img\/cpscott.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery-1.12.0.min.js"
        ]
    },
    "content_scripts": [
        {
            "css": [
                "CiRF.css"
            ],
            "matches": [
                "http:\/\/www.theguardian.com\/*",
                "https:\/\/www.theguardian.com\/*",
                "https:\/\/profile.theguardian.com\/*"
            ],
            "js": [
                "jquery-1.12.0.min.js",
                "CiRF.js",
                "CiRFUser.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "img\/CiRFComment.png"
    ]
}