Loading Timer

Check loading time of any page!

Τι είναι το Loading Timer;

Το Loading Timer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον chack2workspace, και η κύρια λειτουργία του είναι "Check loading time of any page!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Loading Timer

Λήψη αρχείων επέκτασης Loading Timer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Loading Timer is a browser extension that allows you to easily track the time it takes for a web page to fully load. With just one click, you can see how long it takes for a page to load, giving you insight into the performance of your website and helping you optimize it for faster loading times. This extension is particularly useful for web developers and site owners who want to ensure that their pages are loading as efficiently as possible. It's also a useful tool for anyone who is interested in understanding more about how their browser is performing and how long it takes to load different types of pages. Overall, Loading Timer is a simple, yet powerful tool that can help you get a better understanding of the performance of your website and improve the user experience for your visitors!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Loading Timer Loading Timer
ID ninmkdgknbnhahddjcolikjcbeehbjpl
Επίσημο URL https://chrome.google.com/webstore/detail/loading-timer/ninmkdgknbnhahddjcolikjcbeehbjpl
Περιγραφή Check loading time of any page!
Μέγεθος Αρχείου 12.57 KB
Αριθμός Εγκαταστάσεων 2,918
Τρέχουσα Έκδοση 1
Τελευταία Ενημέρωση 2022-12-22
Ημερομηνία Δημοσίευσης 2022-12-22
Προγραμματιστής chack2workspace
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://home.gulletogethere.xyz/
Διεύθυνση URL της Σελίδας Βοήθειας https://home.gulletogethere.xyz/contact.html
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Loading Timer",
        "default_popup": "popup.html"
    },
    "description": "Check loading time of any page!",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Loading Timer",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}