Browse Next
Browse Next is a simple and easy to use ext that assists you with learning more about common errors online.
Vad är Browse Next?
Browse Next är en Chrome-tillägg utvecklad av Phillip Norton, och dess huvudfunktion är "Browse Next is a simple and easy to use ext that assists you with learning more about common errors online.".
Tilläggsskärmbilder
Ladda ner Browse Next-förlängningens CRX-fil
Ladda ner Browse Next-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
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!
Grundläggande Information om Tillägg
Namn | Browse Next |
ID | copdjcgkhmclllognmgnbcgcomhaigkc |
Officiell webbadress | https://chromewebstore.google.com/detail/browse-next/copdjcgkhmclllognmgnbcgcomhaigkc |
Beskrivning | Browse Next is a simple and easy to use ext that assists you with learning more about common errors online. |
Filstorlek | 9.79 KB |
Antal Installationer | 943 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2023-12-18 |
Publiceringsdatum | 2023-12-18 |
Utvecklare | Phillip Norton |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://browsenext.net |
Hjälpsida URL | https://browsenext.net/?a=about |
URL till Sekretesspolicy Sidan | https://browsenext.net?a=privacy |
Stödda Språk | 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:\/\/*\/*" ] } |