GitHub Points
Add storypoints feature to GitHub
Qu'est-ce que GitHub Points ?
GitHub Points est une extension Chrome développée par mazrica inc., et sa fonction principale est "Add storypoints feature to GitHub".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Points
Téléchargez les fichiers d'extension GitHub Points au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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"
Informations de Base sur l'Extension
Nom | GitHub Points |
ID | gblajdemjpibbajhifkbbngkllejempi |
URL Officiel | https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi |
Description | Add storypoints feature to GitHub |
Taille du Fichier | 31.53 KB |
Nombre d'Installations | 44 |
Version Actuelle | 0.1.1 |
Dernière Mise à Jour | 2018-07-05 |
Date de Publication | 2018-07-05 |
Développeur | mazrica inc. |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mazrica/chrome-github-points |
URL de la Page d'Aide | https://github.com/mazrica/chrome-github-points/issues |
URL de la Page de Politique de Confidentialité | https://mazrica.com/privacy-policy |
Langues Prises en Charge | 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" ] } |