PageLoad times

Page Load Times

PageLoad timesとは何ですか?

PageLoad timesはavinash24.pによって開発されたChromeの拡張機能で、その主な機能は「Page Load Times」です。

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

screenshot

PageLoad times拡張機能のCRXファイルをダウンロード

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
Eメール [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"
        }
    ]
}