Claire

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

Co je Claire?

Claire je rozšíření Chrome vyvinuté Ram, a jeho hlavní funkcí je „Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Claire

Stáhněte si soubory rozšíření Claire ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
Oficiální URL https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Popis Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
Velikost souboru 574 KB
Počet instalací 11,004
Aktuální Verze 0.11.0
Poslední Aktualizace 2018-02-04
Datum Vydání 2018-02-04
Hodnocení 4.59/5 Celkem 56 Hodnocení
Vývojář Ram
Typ Platby free
Webové stránky Rozšíření https://www.cloudflare.com
Podporované Jazyky 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';"
}