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文件
下载Github 404 Breakdown扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 } ] } |