Claire

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

Qu'est-ce que Claire ?

Claire est une extension Chrome développée par Ram, et sa fonction principale est "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Claire

Téléchargez les fichiers d'extension Claire au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
URL Officiel https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
Description Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
Taille du Fichier 574 KB
Nombre d'Installations 11,004
Version Actuelle 0.11.0
Dernière Mise à Jour 2018-02-04
Date de Publication 2018-02-04
Évaluation 4.59/5 Total 56 Évaluations
Développeur Ram
Type de Paiement free
Site Web de l'Extension https://www.cloudflare.com
Langues Prises en Charge 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';"
}