GitHub Story Points
Chrome extension to see story points in GitHub projects
What is GitHub Story Points?
GitHub Story Points is a Chrome extension developed by banyan, and its main feature is "Chrome extension to see story points in GitHub projects".
Extension Screenshots
Download GitHub Story Points Extension CRX File
Download GitHub Story 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
https://github.com/banyan/github-story-points
Extension Basic Information
Name | GitHub Story Points |
ID | fdhfdpafombnahpjjjcfopmehfofbdko |
Official URL | https://chromewebstore.google.com/detail/github-story-points/fdhfdpafombnahpjjjcfopmehfofbdko |
Description | Chrome extension to see story points in GitHub projects |
File Size | 525 KB |
Installation Count | 593 |
Current Version | 0.3.0 |
Last Updated | 2020-08-17 |
Publish Date | 2019-08-09 |
Rating | 3.00/5 Total 1 Ratings |
Developer | banyan |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/banyan/github-story-points |
Supported Languages | 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" ] } ] } |