CiRF The Guardian

Comment is Really Free on Guardian articles

Vad är CiRF The Guardian?

CiRF The Guardian är en Chrome-tillägg utvecklad av https://commentisreallyfree.com, och dess huvudfunktion är "Comment is Really Free on Guardian articles".

Tilläggsskärmbilder

screenshot

Ladda ner CiRF The Guardian-förlängningens CRX-fil

Ladda ner CiRF The Guardian-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

                        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.                    

Grundläggande Information om Tillägg

Namn CiRF The Guardian CiRF The Guardian
ID lcfggnjbfkifcdlodneooflgidjdncak
Officiell webbadress https://chrome.google.com/webstore/detail/cirf-the-guardian/lcfggnjbfkifcdlodneooflgidjdncak
Beskrivning Comment is Really Free on Guardian articles
Filstorlek 46.41 KB
Antal Installationer 15
Aktuell Version 1.1
Senast Uppdaterad 2016-05-25
Publiceringsdatum 2016-05-25
Utvecklare https://commentisreallyfree.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://commentisreallyfree.com/CiRFTheGuardian/
Hjälpsida URL https://commentisreallyfree.com/CiRFTheGuardian/Home/FAQ
URL till Sekretesspolicy Sidan https://commentisreallyfree.com/CiRFtheGuardian/Home/UserAgreement
Stödda Språk 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"
    ]
}