Page load time

Displays page load time in the toolbar

Qu'est-ce que Page load time ?

Page load time est une extension Chrome développée par Alexander Vykhodtsev, et sa fonction principale est "Displays page load time in the toolbar".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Page load time

Téléchargez les fichiers d'extension Page load time au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        This extension measures page load time and displays it in the toolbar. Navigation Timing API is used for precise measurement.


Source code available at 
https://github.com/alex-vv/page-load-time                    

Informations de Base sur l'Extension

Nom Page load time Page load time
ID fploionmjgeclbkemipmkogoaohcdbig
URL Officiel https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig
Description Displays page load time in the toolbar
Taille du Fichier 17.38 KB
Nombre d'Installations 171,349
Version Actuelle 3.2.1
Dernière Mise à Jour 2021-02-09
Date de Publication 2020-11-06
Évaluation 4.54/5 Total 252 Évaluations
Développeur Alexander Vykhodtsev
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/alex-vv/page-load-time
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Page load time",
    "version": "3.2.1",
    "manifest_version": 2,
    "description": "Displays page load time in the toolbar",
    "background": {
        "scripts": [
            "browser-polyfill.min.js",
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "stopwatch22.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "browser-polyfill.min.js",
                "performance.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "stopwatch16.png",
        "48": "stopwatch48.png",
        "128": "stopwatch128.png"
    }
}