Github Fork Confirmation

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

Was ist Github Fork Confirmation?

Github Fork Confirmation ist eine Chrome-Erweiterung, die von Alex Pendleton entwickelt wurde, und ihr Hauptmerkmal ist "Adds a confirmation dialog to the Github and Gist Fork button.".

Erweiterungsscreenshots

screenshot

Github Fork Confirmation-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github Fork Confirmation-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Github Fork Confirmation Github Fork Confirmation
ID mofjdkidemhjconaodballcmpnaofeod
Offizielle URL https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod
Beschreibung Adds a confirmation dialog to the Github and Gist Fork button.
Dateigröße 17.08 KB
Installationsanzahl 125
Aktuelle Version 1.0.1
Letztes Update 2015-08-26
Veröffentlichungsdatum 2015-08-25
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Alex Pendleton
Zahlungsart free
Erweiterungswebsite https://github.com/alexcpendleton/GithubForkConfirmation
Hilfeseite URL https://github.com/alexcpendleton/GithubForkConfirmation
Unterstützte Sprachen 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"
            ]
        }
    ]
}