Page load time

Displays page load time in the toolbar

Page load timeとは何ですか?

Page load timeはAlexander Vykhodtsevによって開発されたChromeの拡張機能で、その主な機能は「Displays page load time in the toolbar」です。

拡張機能のスクリーンショット

screenshot
screenshot

Page load time拡張機能のCRXファイルをダウンロード

Page load time拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Page load time Page load time
ID fploionmjgeclbkemipmkogoaohcdbig
公式URL https://chromewebstore.google.com/detail/page-load-time/fploionmjgeclbkemipmkogoaohcdbig
説明 Displays page load time in the toolbar
ファイルサイズ 17.38 KB
インストール数 171,349
現在のバージョン 3.2.1
最終更新日 2021-02-09
公開日 2020-11-06
評価 4.54/5 合計 252 レビュー
開発者 Alexander Vykhodtsev
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/alex-vv/page-load-time
対応言語 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"
    }
}