Github quarterly contributions

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

Github quarterly contributions क्या है?

Github quarterly contributions Eric Bidelman द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a quarterly stats button on a user's landing page"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Github quarterly contributions एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
            ]
        }
    ]
}