Error Director

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

Was ist Error Director?

Error Director ist eine Chrome-Erweiterung, die von https://knowyourerrors.com entwickelt wurde, und ihr Hauptmerkmal ist "Error Director helps users online by directing them to live sites.".

Erweiterungsscreenshots

screenshot

Error Director-Erweiterungs-CRX-Datei herunterladen

Laden Sie Error Director-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Error Director Error Director
ID jehnhjckmpkokbcaifiikhhdoeapgnhh
Offizielle URL https://chromewebstore.google.com/detail/error-director/jehnhjckmpkokbcaifiikhhdoeapgnhh
Beschreibung Error Director helps users online by directing them to live sites.
Dateigröße 11.21 KB
Installationsanzahl 3,808
Aktuelle Version 2.0
Letztes Update 2023-12-01
Veröffentlichungsdatum 2023-12-01
Entwickler https://knowyourerrors.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://errordirector.org
Hilfeseite URL https://errordirector.org/?=about
URL der Datenschutzrichtlinien-Seite https://errordirector.org?a=privacy
Unterstützte Sprachen 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:\/\/*\/*"
    ]
}