Joomunited cache checker

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

Joomunited cache checker là gì?

Joomunited cache checker là một tiện ích mở rộng Chrome được phát triển bởi https://www.joomunited.com, và tính năng chính của nó là "Check whether or not a page is served by one of the Joomunited's cache extension".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Joomunited cache checker

Tải xuống các tệp mở rộng Joomunited cache checker dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Joomunited cache checker Joomunited cache checker
ID jlcmafhhfghnndpclpnhgknchmoiceao
URL Chính Thức https://chromewebstore.google.com/detail/joomunited-cache-checker/jlcmafhhfghnndpclpnhgknchmoiceao
Mô tả Check whether or not a page is served by one of the Joomunited's cache extension
Kích Thước Tệp 22.17 KB
Số Lần Cài Đặt 294
Phiên Bản Hiện Tại 1.1.4
Cập Nhật Lần Cuối 2019-04-17
Ngày Phát Hành 2019-04-17
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://www.joomunited.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.joomunited.com
URL Trang Trợ Giúp https://www.joomunited.com/support/pre-sales-forum/categories/wp-speed-of-light/pre-sale-questions-about-wp-speed-of-light
URL Trang Chính Sách Bảo Mật https://www.joomunited.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}