CiRF The Guardian

Comment is Really Free on Guardian articles

Что такое CiRF The Guardian?

CiRF The Guardian - это расширение Chrome, разработанное https://commentisreallyfree.com, и его основная функция - "Comment is Really Free on Guardian articles".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения CiRF The Guardian

Скачайте файлы расширений CiRF The Guardian в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название CiRF The Guardian CiRF The Guardian
ID lcfggnjbfkifcdlodneooflgidjdncak
Официальный URL https://chrome.google.com/webstore/detail/cirf-the-guardian/lcfggnjbfkifcdlodneooflgidjdncak
Описание Comment is Really Free on Guardian articles
Размер файла 46.41 KB
Количество установок 15
Текущая Версия 1.1
Последнее Обновление 2016-05-25
Дата публикации 2016-05-25
Разработчик https://commentisreallyfree.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://commentisreallyfree.com/CiRFTheGuardian/
URL страницы помощи https://commentisreallyfree.com/CiRFTheGuardian/Home/FAQ
URL страницы политики конфиденциальности https://commentisreallyfree.com/CiRFtheGuardian/Home/UserAgreement
Поддерживаемые языки 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"
    ]
}