Github 404 Breakdown

Explains why GitHub returned a 404

Hvad er Github 404 Breakdown?

Github 404 Breakdown er en Chrome-udvidelse udviklet af Sidney Nemzer, og dens hovedfunktion er "Explains why GitHub returned a 404".

Udvidelsesskærmbilleder

screenshot

Download Github 404 Breakdown-udvidelses-CRX-fil

Download Github 404 Breakdown-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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æggende oplysninger om udvidelsen

Navn Github 404 Breakdown Github 404 Breakdown
ID pnhdlhabpckpibnkkddmgcimdejbljge
Officiel URL https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge
Beskrivelse Explains why GitHub returned a 404
Filstørrelse 11.84 KB
Antal Installationer 48
Nuværende Version 3.2
Senest Opdateret 2022-12-17
Udgivelsesdato 2019-10-10
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler Sidney Nemzer
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/SidneyNemzer/github-404-breakdown
Hjælpeside-URL https://github.com/SidneyNemzer/github-404-breakdown/issues
URL til Fortrolighedspolitik Side https://sidneynemzer.github.io/privacy
Understøttede Sprog 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
        }
    ]
}