PageLoad times

Page Load Times

Τι είναι το PageLoad times;

Το PageLoad times είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον avinash24.p, και η κύρια λειτουργία του είναι "Page Load Times".

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

screenshot

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

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

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

                        This Extension gives the fully loaded time. When the processing of the page is complete and all the resources on the page (images, CSS, etc.) have finished downloading. The browser will trigger window.onload when this occurs.


Updates:

-New icon notifications for optimum page loads
-Green icon for <3
-Yellow icon for >3 and <5
-Red icon for >5 to display very high page load                    

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

Όνομα PageLoad times PageLoad times
ID lglmeekjblljbeemilnpakfhgaodnpik
Επίσημο URL https://chromewebstore.google.com/detail/pageload-times/lglmeekjblljbeemilnpakfhgaodnpik
Περιγραφή Page Load Times
Μέγεθος Αρχείου 49.39 KB
Αριθμός Εγκαταστάσεων 2,818
Τρέχουσα Έκδοση 2.0
Τελευταία Ενημέρωση 2022-01-24
Ημερομηνία Δημοσίευσης 2019-11-10
Αξιολόγηση 4.73/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής avinash24.p
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PageLoad times",
    "description": "Page Load Times",
    "version": "2.0",
    "browser_action": {
        "default_icon": "images\/icons\/grey.png",
        "default_title": "Fully Loaded Time"
    },
    "background": {
        "scripts": [
            "jquery.min.js",
            "\/background.js"
        ],
        "persistent": false
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "images\/icons\/16.png",
        "19": "images\/icons\/19.png",
        "38": "images\/icons\/38.png",
        "64": "images\/icons\/64.png",
        "128": "images\/icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_start"
        }
    ]
}