Error Director
Error Director helps users online by directing them to live sites.
Что такое Error Director?
Error Director - это расширение Chrome, разработанное https://knowyourerrors.com, и его основная функция - "Error Director helps users online by directing them to live sites.".
Снимки экрана расширения
Скачать файл CRX расширения Error Director
Скачайте файлы расширений Error Director в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | Error Director |
ID | jehnhjckmpkokbcaifiikhhdoeapgnhh |
Официальный URL | https://chromewebstore.google.com/detail/error-director/jehnhjckmpkokbcaifiikhhdoeapgnhh |
Описание | Error Director helps users online by directing them to live sites. |
Размер файла | 11.21 KB |
Количество установок | 3,808 |
Текущая Версия | 2.0 |
Последнее Обновление | 2023-12-01 |
Дата публикации | 2023-12-01 |
Разработчик | https://knowyourerrors.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://errordirector.org |
URL страницы помощи | https://errordirector.org/?=about |
URL страницы политики конфиденциальности | https://errordirector.org?a=privacy |
Поддерживаемые языки | 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:\/\/*\/*" ] } |