Github 404 Breakdown
Explains why GitHub returned a 404
Github 404 Breakdown란 무엇입니까?
Github 404 Breakdown은(는) Sidney Nemzer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Explains why GitHub returned a 404"입니다.
확장 프로그램 스크린샷
Github 404 Breakdown 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When you visit a page that doesn't exist on GitHub, you're left wondering where to go. This extension shows which part of the URL is OK, and where the 404 occurred, allowing easy navigation to the existing resource. Please note that this extension was not created by GitHub. Browse the source code or submit issues: https://github.com/SidneyNemzer/github-404-breakdown
확장 프로그램 기본 정보
이름 | Github 404 Breakdown |
ID | pnhdlhabpckpibnkkddmgcimdejbljge |
공식 URL | https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge |
설명 | Explains why GitHub returned a 404 |
파일 크기 | 11.84 KB |
설치 횟수 | 48 |
현재 버전 | 3.2 |
최근 업데이트 | 2022-12-17 |
출시 날짜 | 2019-10-10 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Sidney Nemzer |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/SidneyNemzer/github-404-breakdown |
도움말 페이지 URL | https://github.com/SidneyNemzer/github-404-breakdown/issues |
개인정보 보호 정책 페이지 URL | https://sidneynemzer.github.io/privacy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Github 404 Breakdown", "description": "Explains why GitHub returned a 404", "version": "3.2", "icons": { "128": "icon.png" }, "web_accessible_resources": [ { "resources": [ "github-404-breakdown.js" ], "matches": [ "*:\/\/github.com\/*" ] } ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "github-404-breakdown-content-script.js" ], "css": [ "github-404-breakdown.css" ], "all_frames": false } ] } |