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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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