GitHub Release Downloads

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

什麼是GitHub Release Downloads?

GitHub Release Downloads是由https://addshore.com開發的Chrome擴展程式,該擴展的主要功能是“This extension displays the number of downloads GitHub releases have on the releases page.”。

擴展截圖

screenshot

下載GitHub Release Downloads擴展crx文件

下載GitHub Release Downloads擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 GitHub Release Downloads GitHub Release Downloads
ID ncgomhdgmkicjeclohgokhciihpfdlhi
官方網址 https://chromewebstore.google.com/detail/github-release-downloads/ncgomhdgmkicjeclohgokhciihpfdlhi
簡介 This extension displays the number of downloads GitHub releases have on the releases page.
檔案大小 15.76 KB
安裝次數 504
目前版本 1.3.4
更新時間 2023-01-17
上架時間 2020-05-30
評分 4.33/5 共 9 次評分
開發者 https://addshore.com
電子郵箱 [email protected]
付費類型 free
擴展官網 https://addshore.com/2015/04/github-release-download-count-chrome-extension/
說明頁面URL https://github.com/addshore/chrome-github-release-downloads
支援的語言 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
        }
    ]
}