Git Up

Move Github repository's readme to the top

Git Upคืออะไร?

Git Up เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aniket Kudale และคุณลักษณะหลักของมันคือ "Move Github repository's readme to the top"

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

screenshot

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

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

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

                        This extension moves the readme of Github Repository to the top.                    

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

ชื่อ Git Up Git Up
ID ippcncckpdiaahmmolbilefbldgibmff
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff
คำอธิบาย Move Github repository's readme to the top
ขนาดไฟล์ 10.5 KB
จำนวนการติดตั้ง 30
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-09-23
วันที่เผยแพร่ 2020-09-20
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Aniket Kudale
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Git Up",
    "version": "1.1",
    "manifest_version": 2,
    "description": "Move Github repository's readme to the top",
    "homepage_url": "https:\/\/www.aniket.co",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ]
}