Github compare tags

Adds tags to the compare page of Github.

Github compare tagsคืออะไร?

Github compare tags เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marpo60 และคุณลักษณะหลักของมันคือ "Adds tags to the compare page of Github."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github compare tags

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

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

                        Add into the dropdown of Github compare page the tags of the repositories.                    

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

ชื่อ Github compare tags Github compare tags
ID pjkolicadkdcfgjjoopdpleenckeajkk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-compare-tags/pjkolicadkdcfgjjoopdpleenckeajkk
คำอธิบาย Adds tags to the compare page of Github.
ขนาดไฟล์ 8.43 KB
จำนวนการติดตั้ง 62
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2019-06-01
วันที่เผยแพร่ 2019-06-01
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา marpo60
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/marpo60/github-compare-tags
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Github compare tags",
    "version": "0.0.6",
    "manifest_version": 2,
    "description": "Adds tags to the compare page of Github.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "permissions": [
        "storage",
        "https:\/\/github.com\/*"
    ],
    "background": {
        "scripts": [
            "src\/hot-reload.js"
        ]
    },
    "options_ui": {
        "page": "src\/options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ]
        }
    ]
}