Error Director

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

Cos'è Error Director?

Error Director è un'estensione di Chrome sviluppata da https://knowyourerrors.com, e la sua funzione principale è "Error Director helps users online by directing them to live sites.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Error Director

Scarica i file di estensione Error Director 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

                        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!                    

Informazioni di Base sull'Estensione

Nome Error Director Error Director
ID jehnhjckmpkokbcaifiikhhdoeapgnhh
URL Ufficiale https://chromewebstore.google.com/detail/error-director/jehnhjckmpkokbcaifiikhhdoeapgnhh
Descrizione Error Director helps users online by directing them to live sites.
Dimensione del File 11.21 KB
Conteggio Installazioni 3,808
Versione Corrente 2.0
Ultimo Aggiornamento 2023-12-01
Data di Pubblicazione 2023-12-01
Sviluppatore https://knowyourerrors.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://errordirector.org
URL della Pagina di Aiuto https://errordirector.org/?=about
URL della Pagina della Politica sulla Privacy https://errordirector.org?a=privacy
Lingue Supportate 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:\/\/*\/*"
    ]
}