Github quarterly contributions

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

What is Github quarterly contributions?

Github quarterly contributions is a Chrome extension developed by Eric Bidelman, and its main feature is "Adds a quarterly stats button on a user's landing page".

Extension Screenshots

screenshot

Download Github quarterly contributions Extension CRX File

Download Github quarterly contributions extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Github quarterly contributions Github quarterly contributions
ID cinfjnlgpbolahlckdnljecnaagecaen
Official URL https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen
Description Adds a quarterly stats button on a user's landing page
File Size 670 KB
Installation Count 27
Current Version 0.0.3
Last Updated 2014-09-29
Publish Date 2014-09-29
Developer Eric Bidelman
Payment Type free
Extension Website https://github.com/ebidel/github-quarterly-stats
Supported Languages 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"
            ]
        }
    ]
}