Claire

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

¿Qué es Claire?

Claire es una extensión de Chrome desarrollada por Ram, y su función principal es "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Claire

Descarga archivos de extensión Claire en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
URL Oficial https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Descripción Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
Tamaño del Archivo 574 KB
Cantidad de Instalaciones 11,004
Versión Actual 0.11.0
Última Actualización 2018-02-04
Fecha de Publicación 2018-02-04
Calificación 4.59/5 Total de 56 Calificaciones
Desarrollador Ram
Tipo de Pago free
Sitio Web de la Extensión https://www.cloudflare.com
Idiomas Soportados 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';"
}