Claire

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

Claire क्या है?

Claire Ram द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows an orange cloud in the omnibar when you are browsing a site that uses Cloudflare"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Claire एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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';"
}