Chrome Cloudflare Helper

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

Что такое Chrome Cloudflare Helper?

Chrome Cloudflare Helper - это расширение Chrome, разработанное Paul Ashraf, и его основная функция - "A Chrome extension to detect whether the response is coming from a Cloudflare CDN and display its cache status.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Chrome Cloudflare Helper

Скачайте файлы расширений Chrome Cloudflare Helper в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Chrome Cloudflare Helper Chrome Cloudflare Helper
ID mlfmmcdkndpcaffjdbbjoodliplkpkmj
Официальный URL https://chromewebstore.google.com/detail/chrome-cloudflare-helper/mlfmmcdkndpcaffjdbbjoodliplkpkmj
Описание A Chrome extension to detect whether the response is coming from a Cloudflare CDN and display its cache status.
Размер файла 155 KB
Количество установок 299
Текущая Версия 1.0
Последнее Обновление 2023-06-21
Дата публикации 2023-06-20
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Paul Ashraf
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}