Github quarterly contributions

Adds a quarterly stats button on a user's landing page

Was ist Github quarterly contributions?

Github quarterly contributions ist eine Chrome-Erweiterung, die von Eric Bidelman entwickelt wurde, und ihr Hauptmerkmal ist "Adds a quarterly stats button on a user's landing page".

Erweiterungsscreenshots

screenshot

Github quarterly contributions-Erweiterungs-CRX-Datei herunterladen

Laden Sie Github quarterly contributions-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Github quarterly contributions Github quarterly contributions
ID cinfjnlgpbolahlckdnljecnaagecaen
Offizielle URL https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen
Beschreibung Adds a quarterly stats button on a user's landing page
Dateigröße 670 KB
Installationsanzahl 27
Aktuelle Version 0.0.3
Letztes Update 2014-09-29
Veröffentlichungsdatum 2014-09-29
Entwickler Eric Bidelman
Zahlungsart free
Erweiterungswebsite https://github.com/ebidel/github-quarterly-stats
Unterstützte Sprachen 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"
            ]
        }
    ]
}