Github quarterly contributions
Adds a quarterly stats button on a user's landing page
Co to jest Github quarterly contributions?
Github quarterly contributions to rozszerzenie Chrome opracowane przez Eric Bidelman, a jego główną funkcją jest „Adds a quarterly stats button on a user's landing page”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github quarterly contributions
Pobierz pliki rozszerzeń Github quarterly contributions w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | cinfjnlgpbolahlckdnljecnaagecaen |
| Oficjalny URL | https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen |
| Opis | Adds a quarterly stats button on a user's landing page |
| Rozmiar pliku | 670 KB |
| Liczba instalacji | 27 |
| Aktualna Wersja | 0.0.3 |
| Ostatnia Aktualizacja | 2014-09-29 |
| Data Publikacji | 2014-09-29 |
| Deweloper | Eric Bidelman |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/ebidel/github-quarterly-stats |
| Obsługiwane Języki | 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"
]
}
]
} | |