Joomunited cache checker
Check whether or not a page is served by one of the Joomunited's cache extension
Co to jest Joomunited cache checker?
Joomunited cache checker to rozszerzenie Chrome opracowane przez https://www.joomunited.com, a jego główną funkcją jest „Check whether or not a page is served by one of the Joomunited's cache extension”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Joomunited cache checker
Pobierz pliki rozszerzeń Joomunited cache checker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Joomunited cache checker |
ID | jlcmafhhfghnndpclpnhgknchmoiceao |
Oficjalny URL | https://chromewebstore.google.com/detail/joomunited-cache-checker/jlcmafhhfghnndpclpnhgknchmoiceao |
Opis | Check whether or not a page is served by one of the Joomunited's cache extension |
Rozmiar pliku | 22.17 KB |
Liczba instalacji | 294 |
Aktualna Wersja | 1.1.4 |
Ostatnia Aktualizacja | 2019-04-17 |
Data Publikacji | 2019-04-17 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | https://www.joomunited.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.joomunited.com |
Adres URL Strony Pomocy | https://www.joomunited.com/support/pre-sales-forum/categories/wp-speed-of-light/pre-sale-questions-about-wp-speed-of-light |
Adres URL Strony Polityki Prywatności | https://www.joomunited.com/privacy-policy |
Obsługiwane Języki | 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" ] } |