Github Fork Confirmation

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

Wat is Github Fork Confirmation?

Github Fork Confirmation is een Chrome-extensie ontwikkeld door Alex Pendleton, en de belangrijkste functie is "Adds a confirmation dialog to the Github and Gist Fork button.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Github Fork Confirmation

Download Github Fork Confirmation-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Github Fork Confirmation Github Fork Confirmation
ID mofjdkidemhjconaodballcmpnaofeod
Officiële URL https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod
Beschrijving Adds a confirmation dialog to the Github and Gist Fork button.
Bestandsgrootte 17.08 KB
Aantal Installaties 125
Huidige Versie 1.0.1
Laatst Bijgewerkt 2015-08-26
Publicatiedatum 2015-08-25
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Alex Pendleton
Betalingswijze free
Extensiewebsite https://github.com/alexcpendleton/GithubForkConfirmation
Help Pagina-URL https://github.com/alexcpendleton/GithubForkConfirmation
Ondersteunde Talen 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"
            ]
        }
    ]
}