GitHub Points
Add storypoints feature to GitHub
Cos'è GitHub Points?
GitHub Points è un'estensione di Chrome sviluppata da mazrica inc., e la sua funzione principale è "Add storypoints feature to GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione GitHub Points
Scarica i file di estensione GitHub 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
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"
Informazioni di Base sull'Estensione
Nome | GitHub Points |
ID | gblajdemjpibbajhifkbbngkllejempi |
URL Ufficiale | https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi |
Descrizione | Add storypoints feature to GitHub |
Dimensione del File | 31.53 KB |
Conteggio Installazioni | 44 |
Versione Corrente | 0.1.1 |
Ultimo Aggiornamento | 2018-07-05 |
Data di Pubblicazione | 2018-07-05 |
Sviluppatore | mazrica inc. |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/mazrica/chrome-github-points |
URL della Pagina di Aiuto | https://github.com/mazrica/chrome-github-points/issues |
URL della Pagina della Politica sulla Privacy | https://mazrica.com/privacy-policy |
Lingue Supportate | 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" ] } |