Chrome Cloudflare Helper

A Chrome extension to detect whether the response is coming from a Cloudflare CDN and display its cache status.

Co to jest Chrome Cloudflare Helper?

Chrome Cloudflare Helper to rozszerzenie Chrome opracowane przez Paul Ashraf, a jego główną funkcją jest „A Chrome extension to detect whether the response is coming from a Cloudflare CDN and display its cache status.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Chrome Cloudflare Helper

Pobierz pliki rozszerzeń Chrome Cloudflare Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        A Chrome extension to detect whether the response is coming from a Cloudflare CDN and display its cache status.                    

Podstawowe informacje o rozszerzeniu

Nazwa Chrome Cloudflare Helper Chrome Cloudflare Helper
ID mlfmmcdkndpcaffjdbbjoodliplkpkmj
Oficjalny URL https://chromewebstore.google.com/detail/chrome-cloudflare-helper/mlfmmcdkndpcaffjdbbjoodliplkpkmj
Opis A Chrome extension to detect whether the response is coming from a Cloudflare CDN and display its cache status.
Rozmiar pliku 155 KB
Liczba instalacji 299
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-06-21
Data Publikacji 2023-06-20
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper Paul Ashraf
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Chrome Cloudflare Helper",
    "version": "1.0",
    "description": "A Chrome extension to detect  whether the response is coming from a Cloudflare CDN and display its cache status.",
    "host_permissions": [
        ""
    ],
    "permissions": [
        "webRequest"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}