GitHub Story Points
Chrome extension to see story points in GitHub projects
Cos'è GitHub Story Points?
GitHub Story Points è un'estensione di Chrome sviluppata da banyan, e la sua funzione principale è "Chrome extension to see story points in GitHub projects".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Story Points
Scarica i file di estensione GitHub Story Points in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
https://github.com/banyan/github-story-points
Informazioni di Base sull'Estensione
Nome | GitHub Story Points |
ID | fdhfdpafombnahpjjjcfopmehfofbdko |
URL Ufficiale | https://chromewebstore.google.com/detail/github-story-points/fdhfdpafombnahpjjjcfopmehfofbdko |
Descrizione | Chrome extension to see story points in GitHub projects |
Dimensione del File | 525 KB |
Conteggio Installazioni | 593 |
Versione Corrente | 0.3.0 |
Ultimo Aggiornamento | 2020-08-17 |
Data di Pubblicazione | 2019-08-09 |
Valutazione | 3.00/5 Totale 1 Valutazioni |
Sviluppatore | banyan |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/banyan/github-story-points |
Lingue Supportate | 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" ] } ] } |