Joomunited cache checker

Check whether or not a page is served by one of the Joomunited's cache extension

什么是Joomunited cache checker?

Joomunited cache checker是由https://www.joomunited.com开发的Chrome扩展程序,该扩展的主要功能是“Check whether or not a page is served by one of the Joomunited's cache extension”。

扩展截图

screenshot
screenshot
screenshot

下载Joomunited cache checker扩展crx文件

下载Joomunited cache checker扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        JoomUnited cache checker displays general information (apply to all websites):

- Total page loading time
- Varnish server cache
- When the Varnish cache have been generated (current or previous request)
- Details of the loading time by element: 
>> Waiting server reply
>> Redirect (if any)
>> DNS resolution
>> Connect to server
>> Content sending
>> Reveive
>> Unload time
>> Dom time
>> Load time
----

JoomUnited cache checker displays specific information:

- If the cache have been served using WP Speed of Light WordPress plugin
- If the cache have been served using SpeedCache Joomla extension

Furthermore, you can determine wether the desktop, tablet or mobile cache is served (can be configured in WordPress and joomla extensions). If one of this cache system is in use you got a green symbol, if not it's grey, as simple as that!                    

扩展基本信息

名称 Joomunited cache checker Joomunited cache checker
ID jlcmafhhfghnndpclpnhgknchmoiceao
官方URL https://chromewebstore.google.com/detail/joomunited-cache-checker/jlcmafhhfghnndpclpnhgknchmoiceao
简介 Check whether or not a page is served by one of the Joomunited's cache extension
文件大小 22.17 KB
安装次数 294
当前版本 1.1.4
更新时间 2019-04-17
上架时间 2019-04-17
评分 5.00/5 共3次评分
开发者 https://www.joomunited.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.joomunited.com
帮助页面URL https://www.joomunited.com/support/pre-sales-forum/categories/wp-speed-of-light/pre-sale-questions-about-wp-speed-of-light
隐私政策页面URL https://www.joomunited.com/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Joomunited cache checker",
    "description": "Check whether or not a page is served by one of the Joomunited's cache extension",
    "version": "1.1.4",
    "browser_action": {
        "default_icon": "rocket.png",
        "default_popup": "more.html",
        "default_title": "Show more"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "timer.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}