Claire

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

Cos'è Claire?

Claire è un'estensione di Chrome sviluppata da Ram, e la sua funzione principale è "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Claire

Scarica i file di estensione Claire in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
URL Ufficiale https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Descrizione Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
Dimensione del File 574 KB
Conteggio Installazioni 11,004
Versione Corrente 0.11.0
Ultimo Aggiornamento 2018-02-04
Data di Pubblicazione 2018-02-04
Valutazione 4.59/5 Totale 56 Valutazioni
Sviluppatore Ram
Tipo di Pagamento free
Sito Web dell'Estensione https://www.cloudflare.com
Lingue Supportate 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';"
}