Claire

Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare

Что такое Claire?

Claire - это расширение Chrome, разработанное Ram, и его основная функция - "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare".

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Claire adds an unobtrusive icon to your browser that turns orange when you are browsing a website that uses Cloudflare. You can also see if the website is using modern technologies like HTTP/2, IPv6 and Cloudflare's own Railgun.                    

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

Название Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
Официальный URL https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Описание Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
Размер файла 574 KB
Количество установок 11,004
Текущая Версия 0.11.0
Последнее Обновление 2018-02-04
Дата публикации 2018-02-04
Рейтинг 4.59/5 Всего 56 оценок
Разработчик Ram
Тип оплаты free
Официальный сайт расширения https://www.cloudflare.com
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Claire",
    "description": "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare",
    "version": "0.11.0",
    "manifest_version": 2,
    "icons": {
        "128": "images\/orange-cloud-128.png",
        "48": "images\/orange-cloud-48.png",
        "16": "images\/orange-cloud-16.png"
    },
    "permissions": [
        "tabs",
        "clipboardWrite",
        "webNavigation",
        "webRequest",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "page_action": {
        "browser_style": true,
        "default_title": "Cloudflare",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_security_policy": "object-src 'self'; script-src 'self' 'unsafe-eval';"
}