Joomunited cache checker

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

¿Qué es Joomunited cache checker?

Joomunited cache checker es una extensión de Chrome desarrollada por https://www.joomunited.com, y su función principal es "Check whether or not a page is served by one of the Joomunited's cache extension".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Joomunited cache checker

Descarga archivos de extensión Joomunited cache checker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Joomunited cache checker Joomunited cache checker
ID jlcmafhhfghnndpclpnhgknchmoiceao
URL Oficial https://chromewebstore.google.com/detail/joomunited-cache-checker/jlcmafhhfghnndpclpnhgknchmoiceao
Descripción Check whether or not a page is served by one of the Joomunited's cache extension
Tamaño del Archivo 22.17 KB
Cantidad de Instalaciones 294
Versión Actual 1.1.4
Última Actualización 2019-04-17
Fecha de Publicación 2019-04-17
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador https://www.joomunited.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.joomunited.com
URL de la Página de Ayuda https://www.joomunited.com/support/pre-sales-forum/categories/wp-speed-of-light/pre-sale-questions-about-wp-speed-of-light
URL de la Página de Política de Privacidad https://www.joomunited.com/privacy-policy
Idiomas Soportados 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"
    ]
}