Github 404 Breakdown
Explains why GitHub returned a 404
O que é Github 404 Breakdown?
Github 404 Breakdown é uma extensão do Chrome desenvolvida por Sidney Nemzer, e sua principal característica é "Explains why GitHub returned a 404".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github 404 Breakdown
Baixe arquivos de extensão Github 404 Breakdown no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Github 404 Breakdown |
ID | pnhdlhabpckpibnkkddmgcimdejbljge |
URL Oficial | https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge |
Descrição | Explains why GitHub returned a 404 |
Tamanho do Arquivo | 11.84 KB |
Contagem de Instalações | 48 |
Versão Atual | 3.2 |
Última Atualização | 2022-12-17 |
Data de Publicação | 2019-10-10 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Sidney Nemzer |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/SidneyNemzer/github-404-breakdown |
URL da Página de Ajuda | https://github.com/SidneyNemzer/github-404-breakdown/issues |
URL da Página de Política de Privacidade | https://sidneynemzer.github.io/privacy |
Idiomas Suportados | 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 } ] } |