Daring Fireball with Comments

Adds comments to John Gruber’s daringfireball.net to encourage stimulating discussion. It is not endorsed by daringfireball.net.

Что такое Daring Fireball with Comments?

Daring Fireball with Comments - это расширение Chrome, разработанное Unknown, и его основная функция - "Adds comments to John Gruber’s daringfireball.net to encourage stimulating discussion. It is not endorsed by daringfireball.net.".

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

screenshot
screenshot

Скачать файл CRX расширения Daring Fireball with Comments

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

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

                        This extension adds comments to John Gruber’s daringfireball.net, in order to encourage stimulating in-depth and well-informed discussions on tech news.

It is not supported nor endorsed by daringfireball.net or John Gruber.

Changes in DFWC 4:
- HTTPS support                    

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

Название Daring Fireball with Comments Daring Fireball with Comments
ID cpkbpmniionhpjhgicbmknjngmldlijg
Официальный URL https://chromewebstore.google.com/detail/daring-fireball-with-comm/cpkbpmniionhpjhgicbmknjngmldlijg
Описание Adds comments to John Gruber’s daringfireball.net to encourage stimulating discussion. It is not endorsed by daringfireball.net.
Размер файла 36.98 KB
Количество установок 103
Текущая Версия 4
Последнее Обновление 2017-04-14
Дата публикации 2017-04-14
Рейтинг 5.00/5 Всего 7 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения http://daringfireballwithcomments.net/
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Daring Fireball with Comments",
    "version": "4",
    "manifest_version": 2,
    "homepage_url": "https:\/\/daringfireballwithcomments.net\/",
    "description": "Adds comments to John Gruber\u2019s daringfireball.net to encourage stimulating discussion. It is not endorsed by daringfireball.net.",
    "icons": {
        "48": "Icon-48.png",
        "128": "Icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/daringfireball.net\/*",
                "http:\/\/www.daringfireball.net\/*",
                "https:\/\/daringfireball.net\/*",
                "https:\/\/www.daringfireball.net\/*"
            ],
            "css": [
                "extend.css"
            ],
            "js": [
                "load.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "https:\/\/daringfireballwithcomments.net\/"
    ],
    "web_accessible_resources": [
        "logo_overlay.png",
        "comments.png"
    ]
}