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

Co je 5 minute fork?

5 minute fork je rozšíření Chrome vyvinuté Remy Sharp / Left Logic, a jeho hlavní funkcí je „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“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření 5 minute fork

Stáhněte si soubory rozšíření 5 minute fork ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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."                    

Základní Informace o Rozšíření

Název 5 minute fork 5 minute fork
ID idfhgkibldeniiijlnenfhlilhbifbff
Oficiální URL https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff
Popis 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
Velikost souboru 95.7 KB
Počet instalací 42
Aktuální Verze 1.0.17
Poslední Aktualizace 2015-06-29
Datum Vydání 2015-06-29
Hodnocení 4.20/5 Celkem 5 Hodnocení
Vývojář Remy Sharp / Left Logic
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření http://5minfork.com
URL Stránky Zásad Ochrany Soukromí https://leftlogic.com/privacy/extensions
Podporované Jazyky 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"
        }
    ]
}