Github quarterly contributions
Adds a quarterly stats button on a user's landing page
Vad är Github quarterly contributions?
Github quarterly contributions är en Chrome-tillägg utvecklad av Eric Bidelman, och dess huvudfunktion är "Adds a quarterly stats button on a user's landing page".
Tilläggsskärmbilder
Ladda ner Github quarterly contributions-förlängningens CRX-fil
Ladda ner Github quarterly contributions-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Github quarterly contributions |
ID | cinfjnlgpbolahlckdnljecnaagecaen |
Officiell webbadress | https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen |
Beskrivning | Adds a quarterly stats button on a user's landing page |
Filstorlek | 670 KB |
Antal Installationer | 27 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2014-09-29 |
Publiceringsdatum | 2014-09-29 |
Utvecklare | Eric Bidelman |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/ebidel/github-quarterly-stats |
Stödda Språk | 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" ] } ] } |