Claire

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

Claireとは何ですか?

ClaireはRamによって開発されたChromeの拡張機能で、その主な機能は「Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

Claire拡張機能のCRXファイルをダウンロード

Claire拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Claire Claire
ID fgbpcgddpmjmamlibbaobboigaijnmkl
公式URL https://chromewebstore.google.com/detail/claire/fgbpcgddpmjmamlibbaobboigaijnmkl
説明 Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare
ファイルサイズ 574 KB
インストール数 11,004
現在のバージョン 0.11.0
最終更新日 2018-02-04
公開日 2018-02-04
評価 4.59/5 合計 56 レビュー
開発者 Ram
支払い方法 free
拡張機能のウェブサイト https://www.cloudflare.com
対応言語 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';"
}