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';"
}