GitHub Version Tags

Displays the latest version of a project next to the repo name on GitHub.

GitHub Version Tagsคืออะไร?

GitHub Version Tags เป็นส่วนขยายของ Chrome ที่พัฒนาโดย joeyespo และคุณลักษณะหลักของมันคือ "Displays the latest version of a project next to the repo name on GitHub."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Version Tags

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

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

                        Displays the latest version of a project next to the repo name on GitHub.

Source code is on GitHub http://github.com/joeyespo/github-version-tags                    

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

ชื่อ GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
คำอธิบาย Displays the latest version of a project next to the repo name on GitHub.
ขนาดไฟล์ 38.62 KB
จำนวนการติดตั้ง 126
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2017-10-01
วันที่เผยแพร่ 2017-10-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา joeyespo
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://github.com/joeyespo/github-version-tags
URL หน้าช่วยเหลือ http://github.com/joeyespo/github-version-tags/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Version Tags",
    "version": "1.1.0",
    "description": "Displays the latest version of a project next to the repo name on GitHub.",
    "author": "Joe Esposito ",
    "icons": {
        "19": "media\/icon_19.png",
        "38": "media\/icon_38.png",
        "48": "media\/icon_48.png",
        "128": "media\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/compare-versions.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/api.github.com\/*"
    ]
}