Github Fork Confirmation

Adds a confirmation dialog to the Github and Gist Fork button.

Qu'est-ce que Github Fork Confirmation ?

Github Fork Confirmation est une extension Chrome développée par Alex Pendleton, et sa fonction principale est "Adds a confirmation dialog to the Github and Gist Fork button.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Github Fork Confirmation

Téléchargez les fichiers d'extension Github Fork Confirmation 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

                        Are you always accidentally forking repositories? I know I am.

This Chrome Extension (or User Script!) will help. It adds a confirm dialog to the Fork button on Github repositories and Gists.

The source code is available on Github. https://github.com/alexcpendleton/GithubForkConfirmation

Updated! August 25, 2015: v1.0.1 - Fixed to accommodate new Github HTML. Sorry for the inconvenience.                    

Informations de Base sur l'Extension

Nom Github Fork Confirmation Github Fork Confirmation
ID mofjdkidemhjconaodballcmpnaofeod
URL Officiel https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod
Description Adds a confirmation dialog to the Github and Gist Fork button.
Taille du Fichier 17.08 KB
Nombre d'Installations 125
Version Actuelle 1.0.1
Dernière Mise à Jour 2015-08-26
Date de Publication 2015-08-25
Évaluation 5.00/5 Total 1 Évaluations
Développeur Alex Pendleton
Type de Paiement free
Site Web de l'Extension https://github.com/alexcpendleton/GithubForkConfirmation
URL de la Page d'Aide https://github.com/alexcpendleton/GithubForkConfirmation
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github Fork Confirmation",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Adds a confirmation dialog to the Github and Gist Fork button.",
    "homepage_url": "https:\/\/github.com\/alexcpendleton\/GithubForkConfirmation",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}