GitHub Points

Add storypoints feature to GitHub

What is GitHub Points?

GitHub Points is a Chrome extension developed by mazrica inc., and its main feature is "Add storypoints feature to GitHub".

Extension Screenshots

screenshot

Download GitHub Points Extension CRX File

Download GitHub Points extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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"                    

Extension Basic Information

Name GitHub Points GitHub Points
ID gblajdemjpibbajhifkbbngkllejempi
Official URL https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi
Description Add storypoints feature to GitHub
File Size 31.53 KB
Installation Count 44
Current Version 0.1.1
Last Updated 2018-07-05
Publish Date 2018-07-05
Developer mazrica inc.
Email [email protected]
Payment Type free
Extension Website https://github.com/mazrica/chrome-github-points
Help Page URL https://github.com/mazrica/chrome-github-points/issues
Privacy Policy Page URL https://mazrica.com/privacy-policy
Supported Languages 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"
    ]
}