Error Director

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

Hvad er Error Director?

Error Director er en Chrome-udvidelse udviklet af https://knowyourerrors.com, og dens hovedfunktion er "Error Director helps users online by directing them to live sites.".

Udvidelsesskærmbilleder

screenshot

Download Error Director-udvidelses-CRX-fil

Download Error Director-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Error Director Error Director
ID jehnhjckmpkokbcaifiikhhdoeapgnhh
Officiel URL https://chromewebstore.google.com/detail/error-director/jehnhjckmpkokbcaifiikhhdoeapgnhh
Beskrivelse Error Director helps users online by directing them to live sites.
Filstørrelse 11.21 KB
Antal Installationer 3,808
Nuværende Version 2.0
Senest Opdateret 2023-12-01
Udgivelsesdato 2023-12-01
Udvikler https://knowyourerrors.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://errordirector.org
Hjælpeside-URL https://errordirector.org/?=about
URL til Fortrolighedspolitik Side https://errordirector.org?a=privacy
Understøttede Sprog 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:\/\/*\/*"
    ]
}