Github quarterly contributions

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

Github quarterly contributions là gì?

Github quarterly contributions là một tiện ích mở rộng Chrome được phát triển bởi Eric Bidelman, và tính năng chính của nó là "Adds a quarterly stats button on a user's landing page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github quarterly contributions

Tải xuống các tệp mở rộng Github quarterly contributions dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github quarterly contributions Github quarterly contributions
ID cinfjnlgpbolahlckdnljecnaagecaen
URL Chính Thức https://chromewebstore.google.com/detail/github-quarterly-contribu/cinfjnlgpbolahlckdnljecnaagecaen
Mô tả Adds a quarterly stats button on a user's landing page
Kích Thước Tệp 670 KB
Số Lần Cài Đặt 27
Phiên Bản Hiện Tại 0.0.3
Cập Nhật Lần Cuối 2014-09-29
Ngày Phát Hành 2014-09-29
Nhà Phát Triển Eric Bidelman
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ebidel/github-quarterly-stats
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}