5 minute fork

Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com

O que é 5 minute fork?

5 minute fork é uma extensão do Chrome desenvolvida por Remy Sharp / Left Logic, e sua principal característica é "Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão 5 minute fork

Baixe arquivos de extensão 5 minute fork 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

                        5 minute fork creates a temporary clone of a github repo when the repo owner hasn't hosted their demo. This extension adds a '5 minute fork' button to github repos to quickly and easily clone.

As explained on HackerNews:

"If a github repo has an index.html file and you click on it, github will show you the source instead of the webpage.  5minfork shows you the webpage so that you can have an idea of what the repo is about."                    

Informações Básicas da Extensão

Nome 5 minute fork 5 minute fork
ID idfhgkibldeniiijlnenfhlilhbifbff
URL Oficial https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff
Descrição Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com
Tamanho do Arquivo 95.7 KB
Contagem de Instalações 42
Versão Atual 1.0.17
Última Atualização 2015-06-29
Data de Publicação 2015-06-29
Classificação 4.20/5 Total de 5 Avaliações
Desenvolvedor Remy Sharp / Left Logic
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://5minfork.com
URL da Página de Política de Privacidade https://leftlogic.com/privacy/extensions
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "5 minute fork",
    "version": "1.0.17",
    "manifest_version": 2,
    "homepage_url": "http:\/\/5minfork.com",
    "description": "Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "inpage.js"
            ],
            "matches": [
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "run_at": "document_end"
        }
    ]
}