GitHub Points

Add storypoints feature to GitHub

GitHub Points là gì?

GitHub Points là một tiện ích mở rộng Chrome được phát triển bởi mazrica inc., và tính năng chính của nó là "Add storypoints feature to GitHub".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng GitHub Points

Tải xuống các tệp mở rộng GitHub Points dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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"                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên GitHub Points GitHub Points
ID gblajdemjpibbajhifkbbngkllejempi
URL Chính Thức https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi
Mô tả Add storypoints feature to GitHub
Kích Thước Tệp 31.53 KB
Số Lần Cài Đặt 44
Phiên Bản Hiện Tại 0.1.1
Cập Nhật Lần Cuối 2018-07-05
Ngày Phát Hành 2018-07-05
Nhà Phát Triển mazrica inc.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mazrica/chrome-github-points
URL Trang Trợ Giúp https://github.com/mazrica/chrome-github-points/issues
URL Trang Chính Sách Bảo Mật https://mazrica.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}