Github Issue Reactions

List a link of reactions on a github issue and pull request page

Github Issue Reactionsคืออะไร?

Github Issue Reactions เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Lasse Norfeldt และคุณลักษณะหลักของมันคือ "List a link of reactions on a github issue and pull request page"

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

screenshot

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

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

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

                        Use it to get a quick overview of good comments in a long GitHub issue conversation.

Repo to the extension can be found here:
Github at Norfeldt/github-issue-reactions-browser-extension                    

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

ชื่อ Github Issue Reactions Github Issue Reactions
ID enekincdenmmbpgkbhflknhaphpajnfd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-issue-reactions/enekincdenmmbpgkbhflknhaphpajnfd
คำอธิบาย List a link of reactions on a github issue and pull request page
ขนาดไฟล์ 74.39 KB
จำนวนการติดตั้ง 1,053
เวอร์ชันปัจจุบัน 2.4.4
อัปเดตครั้งล่าสุด 2023-06-18
วันที่เผยแพร่ 2022-01-10
คะแนน 4.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Lasse Norfeldt
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github Issue Reactions",
    "version": "2.4.4",
    "description": "List a link of reactions on a github issue and pull request page",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png",
        "256": "icon_256.png"
    },
    "host_permissions": [
        "https:\/\/www.github.com\/",
        "http:\/\/www.github.com\/"
    ]
}