Browse Next
Browse Next is a simple and easy to use ext that assists you with learning more about common errors online.
Что такое Browse Next?
Browse Next - это расширение Chrome, разработанное Phillip Norton, и его основная функция - "Browse Next is a simple and easy to use ext that assists you with learning more about common errors online.".
Снимки экрана расширения
Скачать файл CRX расширения Browse Next
Скачайте файлы расширений Browse Next в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Introducing Browse Next, your go-to Chrome extension for unraveling the mysteries of the internet! This user-friendly tool is designed to demystify everyday error codes, offer insights into website performance across various platforms, and provide a seamless browsing experience. When faced with an error page, easily navigate to similar websites or products using our convenient search bar, powered by affiliate partners such as Yahoo, Bing, and errors.net. Enhance your internet exploration!
Основная информация о расширении
Название | Browse Next |
ID | copdjcgkhmclllognmgnbcgcomhaigkc |
Официальный URL | https://chromewebstore.google.com/detail/browse-next/copdjcgkhmclllognmgnbcgcomhaigkc |
Описание | Browse Next is a simple and easy to use ext that assists you with learning more about common errors online. |
Размер файла | 9.79 KB |
Количество установок | 943 |
Текущая Версия | 1.0 |
Последнее Обновление | 2023-12-18 |
Дата публикации | 2023-12-18 |
Разработчик | Phillip Norton |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://browsenext.net |
URL страницы помощи | https://browsenext.net/?a=about |
URL страницы политики конфиденциальности | https://browsenext.net?a=privacy |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Browse Next", "homepage_url": "https:\/\/browsenext.net", "description": "Browse Next is a simple and easy to use ext that assists you with learning more about common errors online.", "version": "1.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:\/\/*\/*" ] } |