Github 404 Breakdown

Explains why GitHub returned a 404

Cos'è Github 404 Breakdown?

Github 404 Breakdown è un'estensione di Chrome sviluppata da Sidney Nemzer, e la sua funzione principale è "Explains why GitHub returned a 404".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Github 404 Breakdown

Scarica i file di estensione Github 404 Breakdown in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Github 404 Breakdown Github 404 Breakdown
ID pnhdlhabpckpibnkkddmgcimdejbljge
URL Ufficiale https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge
Descrizione Explains why GitHub returned a 404
Dimensione del File 11.84 KB
Conteggio Installazioni 48
Versione Corrente 3.2
Ultimo Aggiornamento 2022-12-17
Data di Pubblicazione 2019-10-10
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Sidney Nemzer
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SidneyNemzer/github-404-breakdown
URL della Pagina di Aiuto https://github.com/SidneyNemzer/github-404-breakdown/issues
URL della Pagina della Politica sulla Privacy https://sidneynemzer.github.io/privacy
Lingue Supportate 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
        }
    ]
}