GitHub Points
Add storypoints feature to GitHub
Wat is GitHub Points?
GitHub Points is een Chrome-extensie ontwikkeld door mazrica inc., en de belangrijkste functie is "Add storypoints feature to GitHub".
Extensie Screenshots
Download het CRX-bestand van de extensie GitHub Points
Download GitHub Points-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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" Basisinformatie over de Extensie
| Naam | |
| ID | gblajdemjpibbajhifkbbngkllejempi |
| Officiële URL | https://chromewebstore.google.com/detail/github-points/gblajdemjpibbajhifkbbngkllejempi |
| Beschrijving | Add storypoints feature to GitHub |
| Bestandsgrootte | 31.53 KB |
| Aantal Installaties | 44 |
| Huidige Versie | 0.1.1 |
| Laatst Bijgewerkt | 2018-07-05 |
| Publicatiedatum | 2018-07-05 |
| Ontwikkelaar | mazrica inc. |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/mazrica/chrome-github-points |
| Help Pagina-URL | https://github.com/mazrica/chrome-github-points/issues |
| URL van de Privacybeleid Pagina | https://mazrica.com/privacy-policy |
| Ondersteunde Talen | 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"
]
} | |