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
Eメール [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"
    ]
}