GitHub Points

Add storypoints feature to GitHub

GitHub Pointsคืออะไร?

GitHub Points เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mazrica inc. และคุณลักษณะหลักของมันคือ "Add storypoints feature to GitHub"

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

screenshot

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

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

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

                        Add storypoints feature to GitHub.

Features:

- No GitHub access tokens / authentication required
- Add points to new issue/PR
- Check points in issue/PR page
- Quickly update points by editing the title
- Show total points in issues/PR tab, filters and searches are also supported
- Milestones, Projects are also supported
- Easily hide badges and summaries from popup or keyboard shortcut "ctrl + option(alt) + p"                    

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

ชื่อ GitHub Points GitHub Points
ID gblajdemjpibbajhifkbbngkllejempi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi
คำอธิบาย Add storypoints feature to GitHub
ขนาดไฟล์ 31.53 KB
จำนวนการติดตั้ง 44
เวอร์ชันปัจจุบัน 0.1.1
อัปเดตครั้งล่าสุด 2018-07-05
วันที่เผยแพร่ 2018-07-05
ผู้พัฒนา mazrica inc.
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mazrica/chrome-github-points
URL หน้าช่วยเหลือ https://github.com/mazrica/chrome-github-points/issues
URL หน้านโยบายความเป็นส่วนตัว https://mazrica.com/privacy-policy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Points",
    "short_name": "GitHub Points",
    "description": "Add storypoints feature to GitHub",
    "version": "0.1.1",
    "author": "nanopx",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/buttons.github.io; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "include_globs": [
                "*"
            ],
            "js": [
                "scripts\/content-script.bundle.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "github-points-icon-16.png",
        "32": "github-points-icon-32.png",
        "24": "github-points-icon-24.png",
        "48": "github-points-icon-48.png",
        "128": "github-points-icon-128.png"
    },
    "permissions": [
        "storage"
    ]
}