Github 404 Breakdown

Explains why GitHub returned a 404

Qu'est-ce que Github 404 Breakdown ?

Github 404 Breakdown est une extension Chrome développée par Sidney Nemzer, et sa fonction principale est "Explains why GitHub returned a 404".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Github 404 Breakdown

Téléchargez les fichiers d'extension Github 404 Breakdown au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Github 404 Breakdown Github 404 Breakdown
ID pnhdlhabpckpibnkkddmgcimdejbljge
URL Officiel https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge
Description Explains why GitHub returned a 404
Taille du Fichier 11.84 KB
Nombre d'Installations 48
Version Actuelle 3.2
Dernière Mise à Jour 2022-12-17
Date de Publication 2019-10-10
Évaluation 5.00/5 Total 2 Évaluations
Développeur Sidney Nemzer
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/SidneyNemzer/github-404-breakdown
URL de la Page d'Aide https://github.com/SidneyNemzer/github-404-breakdown/issues
URL de la Page de Politique de Confidentialité https://sidneynemzer.github.io/privacy
Langues Prises en Charge 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
        }
    ]
}