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
公式URL 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
Eメール [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
        }
    ]
}