Github Fork Confirmation

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

Hvad er Github Fork Confirmation?

Github Fork Confirmation er en Chrome-udvidelse udviklet af Alex Pendleton, og dens hovedfunktion er "Adds a confirmation dialog to the Github and Gist Fork button.".

Udvidelsesskærmbilleder

screenshot

Download Github Fork Confirmation-udvidelses-CRX-fil

Download Github Fork Confirmation-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Github Fork Confirmation Github Fork Confirmation
ID mofjdkidemhjconaodballcmpnaofeod
Officiel URL https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod
Beskrivelse Adds a confirmation dialog to the Github and Gist Fork button.
Filstørrelse 17.08 KB
Antal Installationer 125
Nuværende Version 1.0.1
Senest Opdateret 2015-08-26
Udgivelsesdato 2015-08-25
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Alex Pendleton
Betalingsmetode free
Udvidelseswebsted https://github.com/alexcpendleton/GithubForkConfirmation
Hjælpeside-URL https://github.com/alexcpendleton/GithubForkConfirmation
Understøttede Sprog 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"
            ]
        }
    ]
}