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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.joomunited.com และคุณลักษณะหลักของมันคือ "Check whether or not a page is served by one of the Joomunited's cache extension"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Joomunited cache checker

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}