PerformanceGuard Web Timer

Measures webpage load and render time as you go around. Alerting and troubleshooting are available with the full version.

PerformanceGuard Web Timer란 무엇입니까?

PerformanceGuard Web Timer은(는) https://www.capasystems.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Measures webpage load and render time as you go around. Alerting and troubleshooting are available with the full version."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

PerformanceGuard Web Timer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        PerformanceGuard Web Timer does exactly what the name says. The page load time is displayed in your toolbar and with a click, you can see how much time was used to load content and as well as rendering time in the browser. Timings work with regular HTML pages as well as Single Page Applications (SPA's).
When used with the full version of PerformanceGuard, you will be able to consolidate data from all computers in your organization. This allows for alerting and faster troubleshooting on your business applications whether they run on internal servers, hosted or if you are using any cloud services.                    

확장 프로그램 기본 정보

이름 PerformanceGuard Web Timer PerformanceGuard Web Timer
ID gelgkjhdkdehhjeokbbkdplgkmhffnmc
공식 URL https://chromewebstore.google.com/detail/performanceguard-web-time/gelgkjhdkdehhjeokbbkdplgkmhffnmc
설명 Measures webpage load and render time as you go around. Alerting and troubleshooting are available with the full version.
파일 크기 315 KB
설치 횟수 2,807
현재 버전 1.0.65
최근 업데이트 2020-12-22
출시 날짜 2020-06-03
개발자 https://www.capasystems.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.capasystems.com
도움말 페이지 URL https://www.capasystems.com/support/
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAlW2uK6JOGU+LDlEYwYQXvJtZt0yY+FLg22ucixNwIXcVyIBFUn02\/YmgGfpWnx7ITrUadldg4oBLyJItwri1ZHsaDrdvJkeykkdiZTMlg+qIZGpzVq+ZCVYfc0o4IiTJjz\/L4lOYmPDD01GNjqkEcGtbXHm7QgNLCO3cZmxqsGMrTAJyU03FO5AYRduvxRlvuwnfX67XY94XO17Y8egz+za7Yyfisn3GyY9HyvwsbgPK01vchhktXGIg\/ZPLVcb5umgAuMyzZvcpDtX7BIjmsM6qS9456vAVIqOwBEcT+NZzaeWQpHrLl9PuTB60ENAzuHDHzakpU3ar6sya3MywGwIDAQAB",
    "manifest_version": 2,
    "name": "PerformanceGuard Web Timer",
    "description": "Measures webpage load and render time as you go around. Alerting and troubleshooting are available with the full version.",
    "version": "1.0.65",
    "background": {
        "scripts": [
            "src\/StorageManager.js",
            "src\/background.js"
        ]
    },
    "icons": {
        "16": "logo\/PG_Start_16x16px.png",
        "48": "logo\/PG_Start_48x48px.png",
        "128": "logo\/PG_Start_128x128px.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "src\/StorageManager.js",
                "src\/performance.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "src\/options.html",
        "open_in_tab": true
    },
    "permissions": [
        "nativeMessaging",
        "tabs",
        "storage"
    ],
    "browser_action": {
        "default_popup": "src\/popup.html"
    }
}