Github Fork Confirmation

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

O que é Github Fork Confirmation?

Github Fork Confirmation é uma extensão do Chrome desenvolvida por Alex Pendleton, e sua principal característica é "Adds a confirmation dialog to the Github and Gist Fork button.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Github Fork Confirmation

Baixe arquivos de extensão Github Fork Confirmation no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Github Fork Confirmation Github Fork Confirmation
ID mofjdkidemhjconaodballcmpnaofeod
URL Oficial https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod
Descrição Adds a confirmation dialog to the Github and Gist Fork button.
Tamanho do Arquivo 17.08 KB
Contagem de Instalações 125
Versão Atual 1.0.1
Última Atualização 2015-08-26
Data de Publicação 2015-08-25
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Alex Pendleton
Tipo de Pagamento free
Site da Extensão https://github.com/alexcpendleton/GithubForkConfirmation
URL da Página de Ajuda https://github.com/alexcpendleton/GithubForkConfirmation
Idiomas Suportados 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"
            ]
        }
    ]
}