Site Speed by DebugBear

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

Cos'è Site Speed by DebugBear?

Site Speed by DebugBear è un'estensione di Chrome sviluppata da https://debugbear.com, e la sua funzione principale è "View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Site Speed by DebugBear

Scarica i file di estensione Site Speed by DebugBear in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Site Speed by DebugBear Site Speed by DebugBear
ID peomeonecjebolgekpnddgpgdigmpblc
URL Ufficiale https://chromewebstore.google.com/detail/site-speed-by-debugbear/peomeonecjebolgekpnddgpgdigmpblc
Descrizione View Web Vitals metrics for the websites you visit and quickly navigate to external web performance testing tools.
Dimensione del File 92.18 KB
Conteggio Installazioni 4,000
Versione Corrente 1.0.7
Ultimo Aggiornamento 2023-08-21
Data di Pubblicazione 2022-08-17
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore https://debugbear.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.debugbear.com/site-speed-chrome-extension
URL della Pagina della Politica sulla Privacy https://www.debugbear.com/extension/privacy
Lingue Supportate 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"
            ]
        }
    ]
}