GitHub Points
Add storypoints feature to GitHub
GitHub Pointsとは何ですか?
GitHub Pointsはmazrica inc.によって開発されたChromeの拡張機能で、その主な機能は「Add storypoints feature to GitHub」です。
拡張機能のスクリーンショット
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 |
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. |
Eメール | [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" ] } |