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

Hvad er 5 minute fork?

5 minute fork er en Chrome-udvidelse udviklet af Remy Sharp / Left Logic, og dens hovedfunktion er "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".

Udvidelsesskærmbilleder

screenshot

Download 5 minute fork-udvidelses-CRX-fil

Download 5 minute fork-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

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

Grundlæggende oplysninger om udvidelsen

Navn 5 minute fork 5 minute fork
ID idfhgkibldeniiijlnenfhlilhbifbff
Officiel URL https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff
Beskrivelse 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
Filstørrelse 95.7 KB
Antal Installationer 42
Nuværende Version 1.0.17
Senest Opdateret 2015-06-29
Udgivelsesdato 2015-06-29
Bedømmelse 4.20/5 Samlet 5 Bedømmelser
Udvikler Remy Sharp / Left Logic
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted http://5minfork.com
URL til Fortrolighedspolitik Side https://leftlogic.com/privacy/extensions
Understøttede Sprog 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"
        }
    ]
}