Git First

Takes you to first commit of any GitHub repository

Git First là gì?

Git First là một tiện ích mở rộng Chrome được phát triển bởi https://kamranahmed.info, và tính năng chính của nó là "Takes you to first commit of any GitHub repository".

Ả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 Git First

Tải xuống các tệp mở rộng Git First 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

                        Git First is a chrome extension that takes you to the initial commit of any repository. It adds a context menu item called "Initial Commit" which is shown whenever you are on a repository page and perform a right click. Clicking this button will take you to the first commit of the current repository.

Currently, it only supports GitHub, however, support for Gitlab and Bitbucket is under way                    

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

Tên Git First Git First
ID bkodimdeilmanedhmadkjickmfobpjde
URL Chính Thức https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde
Mô tả Takes you to first commit of any GitHub repository
Kích Thước Tệp 16.82 KB
Số Lần Cài Đặt 188
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2018-11-02
Ngày Phát Hành 2018-11-02
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://kamranahmed.info
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kamranahmedse/git-first
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git First",
    "version": "1.0.1",
    "manifest_version": 2,
    "description": "Takes you to first commit of any GitHub repository",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "icons": {
        "16": "\/icons\/icon16.png",
        "48": "\/icons\/icon48.png",
        "128": "\/icons\/icon128.png"
    },
    "browser_action": {
        "default_title": "Git First",
        "default_icon": "\/icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "script.js"
        ]
    }
}