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"
    ]
}