Errors.net official extension

The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.

Cos'è Errors.net official extension?

Errors.net official extension è un'estensione di Chrome sviluppata da http://errors.net, e la sua funzione principale è "The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Errors.net official extension

Scarica i file di estensione Errors.net official extension 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

                        Server and DNS errors are boring. Errors.net takes internet errors and turns them into beautiful webpages that are full of useful information, relevant offers, and an easy to use search bar (search results provided by Yahoo!). Add the official Errors.net extension today and you won't have to look at a boring internet error page ever again.

New with version 2.0 we are displaying page load times, performance metrics and site unavailability data.  This is used to display geo-data on a live map on errors.net showing network and website errors by region.                    

Informazioni di Base sull'Estensione

Nome Errors.net official extension Errors.net official extension
ID ijmiidfenfofcafblkimipaiapnhjeme
URL Ufficiale https://chrome.google.com/webstore/detail/errorsnet-official-extens/ijmiidfenfofcafblkimipaiapnhjeme
Descrizione The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.
Dimensione del File 25.67 KB
Conteggio Installazioni 395,828
Versione Corrente 2.0
Ultimo Aggiornamento 2023-03-13
Data di Pubblicazione 2022-06-15
Valutazione 3.50/5 Totale 22 Valutazioni
Sviluppatore http://errors.net
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://errors.net/
URL della Pagina di Aiuto https://errors.net/
URL della Pagina della Politica sulla Privacy https://errors.net/privacy-policy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Errors.net official extension",
    "homepage_url": "https:\/\/errors.net",
    "description": "The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.",
    "version": "2.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "worker.js"
    },
    "action": {
        "default_icon": "logo-128.png"
    },
    "icons": {
        "128": "logo-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "performance.js"
            ]
        }
    ],
    "permissions": [
        "webRequest",
        "webNavigation",
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}