Github 404 Breakdown
Explains why GitHub returned a 404
What is Github 404 Breakdown?
Github 404 Breakdown is a Chrome extension developed by Sidney Nemzer, and its main feature is "Explains why GitHub returned a 404".
Extension Screenshots
Download Github 404 Breakdown Extension CRX File
Download Github 404 Breakdown extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Github 404 Breakdown |
ID | pnhdlhabpckpibnkkddmgcimdejbljge |
Official URL | https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge |
Description | Explains why GitHub returned a 404 |
File Size | 11.84 KB |
Installation Count | 48 |
Current Version | 3.2 |
Last Updated | 2022-12-17 |
Publish Date | 2019-10-10 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Sidney Nemzer |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/SidneyNemzer/github-404-breakdown |
Help Page URL | https://github.com/SidneyNemzer/github-404-breakdown/issues |
Privacy Policy Page URL | https://sidneynemzer.github.io/privacy |
Supported Languages | 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 } ] } |