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은(는) http://errors.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The official errors.net extension! We simplify common frustrating web errors and help you find exactly what you wanted."입니다.
확장 프로그램 스크린샷
Errors.net official extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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:\/\/*\/*" ] } |