GitHub Release Downloads

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

What is GitHub Release Downloads?

GitHub Release Downloads is a Chrome extension developed by https://addshore.com, and its main feature is "This extension displays the number of downloads GitHub releases have on the releases page.".

Extension Screenshots

screenshot

Download GitHub Release Downloads Extension CRX File

Download GitHub Release Downloads 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

                        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                    

Extension Basic Information

Name GitHub Release Downloads GitHub Release Downloads
ID ncgomhdgmkicjeclohgokhciihpfdlhi
Official URL https://chromewebstore.google.com/detail/github-release-downloads/ncgomhdgmkicjeclohgokhciihpfdlhi
Description This extension displays the number of downloads GitHub releases have on the releases page.
File Size 15.76 KB
Installation Count 504
Current Version 1.3.4
Last Updated 2023-01-17
Publish Date 2020-05-30
Rating 4.33/5 Total 9 Ratings
Developer https://addshore.com
Email [email protected]
Payment Type free
Extension Website https://addshore.com/2015/04/github-release-download-count-chrome-extension/
Help Page URL https://github.com/addshore/chrome-github-release-downloads
Supported Languages 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
        }
    ]
}