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
官方網址 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"
    ]
}