Page load time

Displays page load time in the toolbar

Wat is Page load time?

Page load time is een Chrome-extensie ontwikkeld door Alexander Vykhodtsev, en de belangrijkste functie is "Displays page load time in the toolbar".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Page load time

Download Page load time-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Page load time Page load time
ID fploionmjgeclbkemipmkogoaohcdbig
Officiële URL https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig
Beschrijving Displays page load time in the toolbar
Bestandsgrootte 17.38 KB
Aantal Installaties 171,349
Huidige Versie 3.2.1
Laatst Bijgewerkt 2021-02-09
Publicatiedatum 2020-11-06
Beoordeling 4.54/5 Totaal 252 Beoordelingen
Ontwikkelaar Alexander Vykhodtsev
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/alex-vv/page-load-time
Ondersteunde Talen 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"
    }
}