Errors.net official extension

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

Co to jest Errors.net official extension?

Errors.net official extension to rozszerzenie Chrome opracowane przez http://errors.net, a jego główną funkcją jest „The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Errors.net official extension

Pobierz pliki rozszerzeń Errors.net official extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Errors.net official extension Errors.net official extension
ID ijmiidfenfofcafblkimipaiapnhjeme
Oficjalny URL https://chrome.google.com/webstore/detail/errorsnet-official-extens/ijmiidfenfofcafblkimipaiapnhjeme
Opis The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.
Rozmiar pliku 25.67 KB
Liczba instalacji 395,828
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2023-03-13
Data Publikacji 2022-06-15
Ocena 3.50/5 Łącznie 22 Oceny
Deweloper http://errors.net
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://errors.net/
Adres URL Strony Pomocy https://errors.net/
Adres URL Strony Polityki Prywatności https://errors.net/privacy-policy
Obsługiwane Języki 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:\/\/*\/*"
    ]
}