Claire

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

Co to jest Claire?

Claire to rozszerzenie Chrome opracowane przez Ram, a jego główną funkcją jest „Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Claire

Pobierz pliki rozszerzeń Claire w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
Oficjalny URL https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Opis Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
Rozmiar pliku 574 KB
Liczba instalacji 11,004
Aktualna Wersja 0.11.0
Ostatnia Aktualizacja 2018-02-04
Data Publikacji 2018-02-04
Ocena 4.59/5 Łącznie 56 Oceny
Deweloper Ram
Typ Płatności free
Strona Rozszerzenia https://www.cloudflare.com
Obsługiwane Języki 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';"
}