Github 404 Breakdown
Explains why GitHub returned a 404
Co to jest Github 404 Breakdown?
Github 404 Breakdown to rozszerzenie Chrome opracowane przez Sidney Nemzer, a jego główną funkcją jest „Explains why GitHub returned a 404”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github 404 Breakdown
Pobierz pliki rozszerzeń Github 404 Breakdown w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Github 404 Breakdown |
ID | pnhdlhabpckpibnkkddmgcimdejbljge |
Oficjalny URL | https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge |
Opis | Explains why GitHub returned a 404 |
Rozmiar pliku | 11.84 KB |
Liczba instalacji | 48 |
Aktualna Wersja | 3.2 |
Ostatnia Aktualizacja | 2022-12-17 |
Data Publikacji | 2019-10-10 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Sidney Nemzer |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/SidneyNemzer/github-404-breakdown |
Adres URL Strony Pomocy | https://github.com/SidneyNemzer/github-404-breakdown/issues |
Adres URL Strony Polityki Prywatności | https://sidneynemzer.github.io/privacy |
Obsługiwane Języki | 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 } ] } |