GitHub Release Downloads

This extension displays the number of downloads GitHub releases have on the releases page.

GitHub Release Downloads là gì?

GitHub Release Downloads là một tiện ích mở rộng Chrome được phát triển bởi https://addshore.com, và tính năng chính của nó là "This extension displays the number of downloads GitHub releases have on the releases 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 Release Downloads

Tải xuống các tệp mở rộng GitHub Release Downloads 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

                        This extension displays the number of downloads GitHub releases have on the releases page.
Adds current download counts to the releases page on Github for custom release artifacts using the GitHub API.

GitHub tracks the number of downloads for all assets (files) that are attached to a release, but GitHub currently makes it very hard for users to get at this information.

Initial release blog post: https://addshore.com/2015/04/github-release-download-count-chrome-extension

Code: https://github.com/addshore/browser-github-release-downloads
Support me: https://www.buymeacoffee.com/addshore                    

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

Tên GitHub Release Downloads GitHub Release Downloads
ID ncgomhdgmkicjeclohgokhciihpfdlhi
URL Chính Thức https://chromewebstore.google.com/detail/github-release-downloads/ncgomhdgmkicjeclohgokhciihpfdlhi
Mô tả This extension displays the number of downloads GitHub releases have on the releases page.
Kích Thước Tệp 15.76 KB
Số Lần Cài Đặt 504
Phiên Bản Hiện Tại 1.3.4
Cập Nhật Lần Cuối 2023-01-17
Ngày Phát Hành 2020-05-30
Đánh Giá 4.33/5 Tổng số 9 Đánh Giá
Nhà Phát Triển https://addshore.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://addshore.com/2015/04/github-release-download-count-chrome-extension/
URL Trang Trợ Giúp https://github.com/addshore/chrome-github-release-downloads
Ngôn Ngữ Được Hỗ Trợ en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.3.4",
    "manifest_version": 2,
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/releases",
                "*:\/\/github.com\/*\/*\/releases\/tag\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "css": [
                "styles\/style.css"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ]
}