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 là gì?

5 minute fork là một tiện ích mở rộng Chrome được phát triển bởi Remy Sharp / Left Logic, và tính năng chính của nó là "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".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng 5 minute fork

Tải xuống các tệp mở rộng 5 minute fork dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên 5 minute fork 5 minute fork
ID idfhgkibldeniiijlnenfhlilhbifbff
URL Chính Thức https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff
Mô tả 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
Kích Thước Tệp 95.7 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.0.17
Cập Nhật Lần Cuối 2015-06-29
Ngày Phát Hành 2015-06-29
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Remy Sharp / Left Logic
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://5minfork.com
URL Trang Chính Sách Bảo Mật https://leftlogic.com/privacy/extensions
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}