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

5 minute fork란 무엇입니까?

5 minute fork은(는) Remy Sharp / Left Logic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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"입니다.

확장 프로그램 스크린샷

screenshot

5 minute fork 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 5 minute fork 5 minute fork
ID idfhgkibldeniiijlnenfhlilhbifbff
공식 URL https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff
설명 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
파일 크기 95.7 KB
설치 횟수 42
현재 버전 1.0.17
최근 업데이트 2015-06-29
출시 날짜 2015-06-29
평점 4.20/5 총 5 개의 평점
개발자 Remy Sharp / Left Logic
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://5minfork.com
개인정보 보호 정책 페이지 URL https://leftlogic.com/privacy/extensions
지원되는 언어 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"
        }
    ]
}