Github 404 Breakdown

Explains why GitHub returned a 404

Co je Github 404 Breakdown?

Github 404 Breakdown je rozšíření Chrome vyvinuté Sidney Nemzer, a jeho hlavní funkcí je „Explains why GitHub returned a 404“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Github 404 Breakdown

Stáhněte si soubory rozšíření Github 404 Breakdown ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Github 404 Breakdown Github 404 Breakdown
ID pnhdlhabpckpibnkkddmgcimdejbljge
Oficiální URL https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge
Popis Explains why GitHub returned a 404
Velikost souboru 11.84 KB
Počet instalací 48
Aktuální Verze 3.2
Poslední Aktualizace 2022-12-17
Datum Vydání 2019-10-10
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář Sidney Nemzer
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/SidneyNemzer/github-404-breakdown
URL Stránky Nápovědy https://github.com/SidneyNemzer/github-404-breakdown/issues
URL Stránky Zásad Ochrany Soukromí https://sidneynemzer.github.io/privacy
Podporované Jazyky 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
        }
    ]
}