GitHub Story Points
Chrome extension to see story points in GitHub projects
GitHub Story Pointsとは何ですか?
GitHub Story Pointsはbanyanによって開発されたChromeの拡張機能で、その主な機能は「Chrome extension to see story points in GitHub projects」です。
拡張機能のスクリーンショット
GitHub Story Points拡張機能のCRXファイルをダウンロード
GitHub Story Points拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
https://github.com/banyan/github-story-points
拡張機能の基本情報
名前 | GitHub Story Points |
ID | fdhfdpafombnahpjjjcfopmehfofbdko |
公式URL | https://chromewebstore.google.com/detail/github-story-points/fdhfdpafombnahpjjjcfopmehfofbdko |
説明 | Chrome extension to see story points in GitHub projects |
ファイルサイズ | 525 KB |
インストール数 | 593 |
現在のバージョン | 0.3.0 |
最終更新日 | 2020-08-17 |
公開日 | 2019-08-09 |
評価 | 3.00/5 合計 1 レビュー |
開発者 | banyan |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/banyan/github-story-points |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Story Points", "description": "Chrome extension to see story points in GitHub projects", "short_name": "GitHub Story Points", "version": "0.3.0", "author": "Kohei Hasegawa", "homepage_url": "https:\/\/github.com\/banyan\/github-story-points", "icons": { "16": "assets\/images\/icon.png", "48": "assets\/images\/icon.png", "128": "assets\/images\/icon.png" }, "permissions": [ "https:\/\/github.com\/*", "contextMenus", "activeTab" ], "optional_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "background": { "scripts": [ "dist\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/projects\/*" ], "js": [ "dist\/story-points.js" ] } ] } |