Error Director

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

Vad är Error Director?

Error Director är en Chrome-tillägg utvecklad av https://knowyourerrors.com, och dess huvudfunktion är "Error Director helps users online by directing them to live sites.".

Tilläggsskärmbilder

screenshot

Ladda ner Error Director-förlängningens CRX-fil

Ladda ner Error Director-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Error Director Error Director
ID jehnhjckmpkokbcaifiikhhdoeapgnhh
Officiell webbadress https://chromewebstore.google.com/detail/error-director/jehnhjckmpkokbcaifiikhhdoeapgnhh
Beskrivning Error Director helps users online by directing them to live sites.
Filstorlek 11.21 KB
Antal Installationer 3,808
Aktuell Version 2.0
Senast Uppdaterad 2023-12-01
Publiceringsdatum 2023-12-01
Utvecklare https://knowyourerrors.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://errordirector.org
Hjälpsida URL https://errordirector.org/?=about
URL till Sekretesspolicy Sidan https://errordirector.org?a=privacy
Stödda Språk 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:\/\/*\/*"
    ]
}