Git First

Takes you to first commit of any GitHub repository

Git Firstคืออะไร?

Git First เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://kamranahmed.info และคุณลักษณะหลักของมันคือ "Takes you to first commit of any GitHub repository"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Git First

ดาวน์โหลดไฟล์ส่วนขยาย Git First ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Git First Git First
ID bkodimdeilmanedhmadkjickmfobpjde
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/git-first/bkodimdeilmanedhmadkjickmfobpjde
คำอธิบาย Takes you to first commit of any GitHub repository
ขนาดไฟล์ 16.82 KB
จำนวนการติดตั้ง 188
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2018-11-02
วันที่เผยแพร่ 2018-11-02
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://kamranahmed.info
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kamranahmedse/git-first
ภาษาที่รองรับ 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"
        ]
    }
}