Github 404 Breakdown
Explains why GitHub returned a 404
Vad är Github 404 Breakdown?
Github 404 Breakdown är en Chrome-tillägg utvecklad av Sidney Nemzer, och dess huvudfunktion är "Explains why GitHub returned a 404".
Tilläggsskärmbilder
Ladda ner Github 404 Breakdown-förlängningens CRX-fil
Ladda ner Github 404 Breakdown-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
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
Grundläggande Information om Tillägg
Namn | Github 404 Breakdown |
ID | pnhdlhabpckpibnkkddmgcimdejbljge |
Officiell webbadress | https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge |
Beskrivning | Explains why GitHub returned a 404 |
Filstorlek | 11.84 KB |
Antal Installationer | 48 |
Aktuell Version | 3.2 |
Senast Uppdaterad | 2022-12-17 |
Publiceringsdatum | 2019-10-10 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Sidney Nemzer |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/SidneyNemzer/github-404-breakdown |
Hjälpsida URL | https://github.com/SidneyNemzer/github-404-breakdown/issues |
URL till Sekretesspolicy Sidan | https://sidneynemzer.github.io/privacy |
Stödda Språk | 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 } ] } |