Claire

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

O que é Claire?

Claire é uma extensão do Chrome desenvolvida por Ram, e sua principal característica é "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Claire

Baixe arquivos de extensão Claire no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
URL Oficial https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Descrição Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
Tamanho do Arquivo 574 KB
Contagem de Instalações 11,004
Versão Atual 0.11.0
Última Atualização 2018-02-04
Data de Publicação 2018-02-04
Classificação 4.59/5 Total de 56 Avaliações
Desenvolvedor Ram
Tipo de Pagamento free
Site da Extensão https://www.cloudflare.com
Idiomas Suportados 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';"
}