Error Director

Error Director helps users online by directing them to live sites.

Co to jest Error Director?

Error Director to rozszerzenie Chrome opracowane przez https://knowyourerrors.com, a jego główną funkcją jest „Error Director helps users online by directing them to live sites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Error Director

Pobierz pliki rozszerzeń Error Director 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

                        ErrorDirector is your go-to solution for stress-free browsing! When errors pop up, we don't just redirect you; we guide you to an educational error page, explaining the issue simply. Plus, we've partnered with affiliates like Bing and Yahoo to ensure you easily continue your online journey. No dead ends, just smooth browsing. Download ErrorDirector now and effortlessly find what you're looking for!                    

Podstawowe informacje o rozszerzeniu

Nazwa Error Director Error Director
ID jehnhjckmpkokbcaifiikhhdoeapgnhh
Oficjalny URL https://chromewebstore.google.com/detail/error-director/jehnhjckmpkokbcaifiikhhdoeapgnhh
Opis Error Director helps users online by directing them to live sites.
Rozmiar pliku 11.21 KB
Liczba instalacji 3,808
Aktualna Wersja 2.0
Ostatnia Aktualizacja 2023-12-01
Data Publikacji 2023-12-01
Deweloper https://knowyourerrors.com
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://errordirector.org
Adres URL Strony Pomocy https://errordirector.org/?=about
Adres URL Strony Polityki Prywatności https://errordirector.org?a=privacy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Error Director",
    "homepage_url": "https:\/\/errordirector.org",
    "description": "Error Director helps users online by directing them to live sites.",
    "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"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}