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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://www.joomunited.com/support/pre-sales-forum/categories/wp-speed-of-light/pre-sale-questions-about-wp-speed-of-light
عنوان صفحة سياسة الخصوصية 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"
    ]
}