Errors.net official extension
The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.
Что такое Errors.net official extension?
Errors.net official extension - это расширение Chrome, разработанное http://errors.net, и его основная функция - "The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.".
Снимки экрана расширения
Скачать файл CRX расширения Errors.net official extension
Скачайте файлы расширений Errors.net official extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Server and DNS errors are boring. Errors.net takes internet errors and turns them into beautiful webpages that are full of useful information, relevant offers, and an easy to use search bar (search results provided by Yahoo!). Add the official Errors.net extension today and you won't have to look at a boring internet error page ever again. New with version 2.0 we are displaying page load times, performance metrics and site unavailability data. This is used to display geo-data on a live map on errors.net showing network and website errors by region.
Основная информация о расширении
Название | |
ID | ijmiidfenfofcafblkimipaiapnhjeme |
Официальный URL | https://chrome.google.com/webstore/detail/errorsnet-official-extens/ijmiidfenfofcafblkimipaiapnhjeme |
Описание | The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted. |
Размер файла | 25.67 KB |
Количество установок | 395,828 |
Текущая Версия | 2.0 |
Последнее Обновление | 2023-03-13 |
Дата публикации | 2022-06-15 |
Рейтинг | 3.50/5 Всего 22 оценок |
Разработчик | http://errors.net |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://errors.net/ |
URL страницы помощи | https://errors.net/ |
URL страницы политики конфиденциальности | https://errors.net/privacy-policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Errors.net official extension", "homepage_url": "https:\/\/errors.net", "description": "The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted.", "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", "tabs" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } |