GitHub Points

Add storypoints feature to GitHub

GitHub Points란 무엇입니까?

GitHub Points은(는) mazrica inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add storypoints feature to GitHub"입니다.

확장 프로그램 스크린샷

screenshot

GitHub Points 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}