Github quarterly contributions

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

Cos'è Github quarterly contributions?

Github quarterly contributions è un'estensione di Chrome sviluppata da Eric Bidelman, e la sua funzione principale è "Adds a quarterly stats button on a user's landing page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Github quarterly contributions

Scarica i file di estensione Github quarterly contributions in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Github quarterly contributions Github quarterly contributions
ID cinfjnlgpbolahlckdnljecnaagecaen
URL Ufficiale https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen
Descrizione Adds a quarterly stats button on a user's landing page
Dimensione del File 670 KB
Conteggio Installazioni 27
Versione Corrente 0.0.3
Ultimo Aggiornamento 2014-09-29
Data di Pubblicazione 2014-09-29
Sviluppatore Eric Bidelman
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ebidel/github-quarterly-stats
Lingue Supportate 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"
            ]
        }
    ]
}