Github quarterly contributions
Adds a quarterly stats button on a user's landing page
Wat is Github quarterly contributions?
Github quarterly contributions is een Chrome-extensie ontwikkeld door Eric Bidelman, en de belangrijkste functie is "Adds a quarterly stats button on a user's landing page".
Extensie Screenshots
Download het CRX-bestand van de extensie Github quarterly contributions
Download Github quarterly contributions-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
Adds a "Add previous quarter" button to a user's Github landing page (see screenshot). Pressing this button fetches the last quarter worth of commits, prs, and issues for the user. Subsequent presses goes back additional quarters. Note: this will include private commits/prs/issues if you are the current logged in user. Viewing someone else's page will only return their public activity. Source: https://github.com/ebidel/github-quarterly-stats
Basisinformatie over de Extensie
Naam | Github quarterly contributions |
ID | cinfjnlgpbolahlckdnljecnaagecaen |
Officiële URL | https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen |
Beschrijving | Adds a quarterly stats button on a user's landing page |
Bestandsgrootte | 670 KB |
Aantal Installaties | 27 |
Huidige Versie | 0.0.3 |
Laatst Bijgewerkt | 2014-09-29 |
Publicatiedatum | 2014-09-29 |
Ontwikkelaar | Eric Bidelman |
Betalingswijze | free |
Extensiewebsite | https://github.com/ebidel/github-quarterly-stats |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github quarterly contributions", "version": "0.0.3", "manifest_version": 2, "description": "Adds a quarterly stats button on a user's landing page", "icons": { "16": "icons\/githubicon.png", "48": "icons\/githubicon.png", "128": "icons\/githubicon.png" }, "permissions": [ "https:\/\/github.com\/*", "activeTab" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "src\/content.js", "bower_components\/moment\/min\/moment.min.js" ] } ] } |