Github quarterly contributions

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

Apa itu Github quarterly contributions?

Github quarterly contributions adalah ekstensi Chrome yang dikembangkan oleh Eric Bidelman, dan fitur utamanya adalah "Adds a quarterly stats button on a user's landing page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Github quarterly contributions

Unduh file ekstensi Github quarterly contributions dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Github quarterly contributions Github quarterly contributions
ID cinfjnlgpbolahlckdnljecnaagecaen
URL Resmi https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen
Deskripsi Adds a quarterly stats button on a user's landing page
Ukuran File 670 KB
Jumlah Instalasi 27
Versi Saat Ini 0.0.3
Terakhir Diperbarui 2014-09-29
Tanggal Publikasi 2014-09-29
Pengembang Eric Bidelman
Tipe Pembayaran free
Situs Ekstensi https://github.com/ebidel/github-quarterly-stats
Bahasa yang Didukung 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"
            ]
        }
    ]
}