Github quarterly contributions

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

Github quarterly contributionsとは何ですか?

Github quarterly contributionsはEric Bidelmanによって開発されたChromeの拡張機能で、その主な機能は「Adds a quarterly stats button on a user's landing page」です。

拡張機能のスクリーンショット

screenshot

Github quarterly contributions拡張機能のCRXファイルをダウンロード

Github quarterly contributions拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Github quarterly contributions Github quarterly contributions
ID cinfjnlgpbolahlckdnljecnaagecaen
公式URL https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen
説明 Adds a quarterly stats button on a user's landing page
ファイルサイズ 670 KB
インストール数 27
現在のバージョン 0.0.3
最終更新日 2014-09-29
公開日 2014-09-29
開発者 Eric Bidelman
支払い方法 free
拡張機能のウェブサイト https://github.com/ebidel/github-quarterly-stats
対応言語 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"
            ]
        }
    ]
}