Site Speed by DebugBear

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

O que é Site Speed by DebugBear?

Site Speed by DebugBear é uma extensão do Chrome desenvolvida por https://debugbear.com, e sua principal característica é "View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Site Speed by DebugBear

Baixe arquivos de extensão Site Speed by DebugBear no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Site Speed by DebugBear Site Speed by DebugBear
ID peomeonecjebolgekpnddgpgdigmpblc
URL Oficial https://chromewebstore.google.com/detail/site-speed-by-debugbear/peomeonecjebolgekpnddgpgdigmpblc
Descrição View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.
Tamanho do Arquivo 92.18 KB
Contagem de Instalações 4,000
Versão Atual 1.0.7
Última Atualização 2023-08-21
Data de Publicação 2022-08-17
Classificação 4.67/5 Total de 3 Avaliações
Desenvolvedor https://debugbear.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.debugbear.com/site-speed-chrome-extension
URL da Página de Política de Privacidade https://www.debugbear.com/extension/privacy
Idiomas Suportados 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"
            ]
        }
    ]
}