GitHub Issues

Browser extension that adds handy tweaks for issues at GitHub.

GitHub Issuesคืออะไร?

GitHub Issues เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Richard Fridrich และคุณลักษณะหลักของมันคือ "Browser extension that adds handy tweaks for issues at GitHub."

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

screenshot
screenshot

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

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

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

                        Browser extension that adds a few handy tweaks to issues at GitHub:

- Hide label changes.
- Hide reassignments.
- Hide milestone changes.
- Hide emojis.
- Hide "+1" comments and display them as a counter/summary.

Source code for this extension is available at:
https://github.com/fczbkk/github-issues-extension                    

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

ชื่อ GitHub Issues GitHub Issues
ID jlhpeckkndnaidhfihcmlihekebdepgg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg
คำอธิบาย Browser extension that adds handy tweaks for issues at GitHub.
ขนาดไฟล์ 12.85 KB
จำนวนการติดตั้ง 17
เวอร์ชันปัจจุบัน 0.3.2
อัปเดตครั้งล่าสุด 2015-03-13
วันที่เผยแพร่ 2015-03-13
ผู้พัฒนา Richard Fridrich
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GitHub Issues",
    "version": "0.3.2",
    "manifest_version": 2,
    "description": "Browser extension that adds handy tweaks for issues at GitHub.",
    "icons": {
        "16": "img\/icon-16.png",
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*\/issues\/*",
                "*:\/\/*.github.com\/*\/pull\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    },
    "permissions": [
        "storage"
    ]
}