GitHub Points

Add storypoints feature to GitHub

什麼是GitHub Points?

GitHub Points是由mazrica inc.開發的Chrome擴展程式,該擴展的主要功能是“Add storypoints feature to GitHub”。

擴展截圖

screenshot

下載GitHub Points擴展crx文件

下載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
官方網址 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"
    ]
}