Site Speed by DebugBear

View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.

Site Speed by DebugBear란 무엇입니까?

Site Speed by DebugBear은(는) https://debugbear.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Site Speed by DebugBear 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.

The extension also shows the observed metrics collected by PageSpeed Insights prior to applying the throttling simulation. This can help you interpret the final reported metrics.

The extension shows the following metrics:
- Full TTFB
- First Contentful Paint
- Largest Contentful Paint
- Cumulative Layout Shift / CLS
- First Input Delay (only after user interaction with the current page)
- Interaction to Next Paint (only after user interaction with the current page)

The "View on DebugBear" link is shown to users logged into the DebugBear monitoring tool.                    

확장 프로그램 기본 정보

이름 Site Speed by DebugBear Site Speed by DebugBear
ID peomeonecjebolgekpnddgpgdigmpblc
공식 URL https://chromewebstore.google.com/detail/site-speed-by-debugbear/peomeonecjebolgekpnddgpgdigmpblc
설명 View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.
파일 크기 92.18 KB
설치 횟수 4,000
현재 버전 1.0.7
최근 업데이트 2023-08-21
출시 날짜 2022-08-17
평점 4.67/5 총 3 개의 평점
개발자 https://debugbear.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.debugbear.com/site-speed-chrome-extension
개인정보 보호 정책 페이지 URL https://www.debugbear.com/extension/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Site Speed by DebugBear",
    "description": "View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.",
    "version": "1.0.7",
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "host_permissions": [
        "https:\/\/*.debugbear.com\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "\/assets\/images\/*",
                "\/node_modules\/web-vitals\/dist\/web-vitals.js"
            ],
            "matches": [
                ""
            ]
        },
        {
            "resources": [
                "js\/psiContent.bundle.js",
                "psiInlineScript.js",
                "\/assets\/images\/*",
                "images\/*"
            ],
            "matches": [
                "https:\/\/pagespeed.web.dev\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon\/ICON_16.png",
        "32": "images\/icon\/ICON_32.png",
        "48": "images\/icon\/ICON_48.png",
        "128": "images\/icon\/ICON_128.png"
    },
    "background": {
        "service_worker": "js\/background.bundle.js"
    },
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/pagespeed.web.dev\/*"
            ],
            "js": [
                "js\/psiContent.bundle.js"
            ]
        }
    ]
}