Github quarterly contributions
Adds a quarterly stats button on a user's landing page
Τι είναι το Github quarterly contributions;
Το Github quarterly contributions είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Eric Bidelman, και η κύρια λειτουργία του είναι "Adds a quarterly stats button on a user's landing page".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Github quarterly contributions
Λήψη αρχείων επέκτασης Github quarterly contributions σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | cinfjnlgpbolahlckdnljecnaagecaen |
| Επίσημο URL | https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen |
| Περιγραφή | Adds a quarterly stats button on a user's landing page |
| Μέγεθος Αρχείου | 670 KB |
| Αριθμός Εγκαταστάσεων | 27 |
| Τρέχουσα Έκδοση | 0.0.3 |
| Τελευταία Ενημέρωση | 2014-09-29 |
| Ημερομηνία Δημοσίευσης | 2014-09-29 |
| Προγραμματιστής | Eric Bidelman |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | https://github.com/ebidel/github-quarterly-stats |
| Υποστηριζόμενες Γλώσσες | 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"
]
}
]
} | |