Claire

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

What is Claire?

Claire is a Chrome extension developed by Ram, and its main feature is "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Claire Extension CRX File

Download Claire extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
Official URL https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Description Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
File Size 574 KB
Installation Count 11,004
Current Version 0.11.0
Last Updated 2018-02-04
Publish Date 2018-02-04
Rating 4.59/5 Total 56 Ratings
Developer Ram
Payment Type free
Extension Website https://www.cloudflare.com
Supported Languages 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';"
}