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是由Paul Ashraf开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to detect whether the response is coming from a Cloudflare CDN and display its cache status.”。

扩展截图

screenshot

下载Chrome Cloudflare Helper扩展crx文件

下载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"
    }
}