GitHub Issues Enhancements

Chrome Extension to capture estimated time and % done for Github issues

GitHub Issues Enhancementsคืออะไร?

GitHub Issues Enhancements เป็นส่วนขยายของ Chrome ที่พัฒนาโดย pda.code และคุณลักษณะหลักของมันคือ "Chrome Extension to capture estimated time and % done for Github issues"

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

screenshot
screenshot
screenshot

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

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

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

                        Tracks Estimated Time and Percent Done of your GitHub issues

This chrome extension offers three more options when browsing GitHub issues on GitHub

- Tracks Estimated time for each issue in Hours/Days/Weeks/Months
- Tracks Completion Percent for each issue
- Summary of the Estimated Time and Completion Percent of all issues currently displayed on screen
 
The extra information per issue is stored inside the body of the original issue as a HTML comment/metadata. It does not change in anyway the original Markdown of the issue. The HTML comment/metadata  is appended at the end of the issue's body and ignored by GitHub when previewing the issue.

PRIVACY POLICY

GitHub Issues Enhancements does not care about your data or source code, neither about your GitHub Personal Access Token. The token is persisted ONLY locally to browser's local storage

PERMISSIONS REQUIRED

1. "*://*.github.com/*" - for running on github.com domain.
2. storage - For storing GitHub Personal Access Token on your local system. GitHub Personal Access Token is required in order to be able to write extra metadata to the GitHub issue body
3. The extension will only work repositories that a user has write access to a GitHub issue (Write/Update).

LICENSE

GitHub Issues Enhancements is under MIT license 
https://github.com/pda-code/Github-Issues-Enhancements/blob/master/LICENSE

CONTACT

For more updates, please stay tuned!
For any issues, open an issue on https://github.com/pda-code/Github-Issues-Enhancements/issues
For any question contact me at [email protected]                    

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

ชื่อ GitHub Issues Enhancements GitHub Issues Enhancements
ID edbnbdnankneabigcimhnnclaonogcep
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-issues-enhancement/edbnbdnankneabigcimhnnclaonogcep
คำอธิบาย Chrome Extension to capture estimated time and % done for Github issues
ขนาดไฟล์ 135 KB
จำนวนการติดตั้ง 39
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2020-07-07
วันที่เผยแพร่ 2020-06-29
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา pda.code
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/pda-code/GitHub-Issues-Enhancements
URL หน้าช่วยเหลือ https://github.com/pda-code/GitHub-Issues-Enhancements/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Issues Enhancements",
    "description": "Chrome Extension to capture estimated time and % done for Github issues",
    "version": "1.1",
    "icons": {
        "48": "48.png",
        "128": "128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/issues",
                "*:\/\/github.com\/*\/*\/issues?*",
                "*:\/\/github.com\/*\/*\/labels\/*",
                "*:\/\/github.com\/*\/*\/milestones\/*",
                "*:\/\/github.com\/*\/*\/milestone\/*"
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ]
}