GitHub Release Downloads

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

Was ist GitHub Release Downloads?

GitHub Release Downloads ist eine Chrome-Erweiterung, die von https://addshore.com entwickelt wurde, und ihr Hauptmerkmal ist "This extension displays the number of downloads GitHub releases have on the releases page.".

Erweiterungsscreenshots

screenshot

GitHub Release Downloads-Erweiterungs-CRX-Datei herunterladen

Laden Sie GitHub Release Downloads-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name GitHub Release Downloads GitHub Release Downloads
ID ncgomhdgmkicjeclohgokhciihpfdlhi
Offizielle URL https://chromewebstore.google.com/detail/github-release-downloads/ncgomhdgmkicjeclohgokhciihpfdlhi
Beschreibung This extension displays the number of downloads GitHub releases have on the releases page.
Dateigröße 15.76 KB
Installationsanzahl 504
Aktuelle Version 1.3.4
Letztes Update 2023-01-17
Veröffentlichungsdatum 2020-05-30
Bewertung 4.33/5 Insgesamt 9 Bewertungen
Entwickler https://addshore.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://addshore.com/2015/04/github-release-download-count-chrome-extension/
Hilfeseite URL https://github.com/addshore/chrome-github-release-downloads
Unterstützte Sprachen 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
        }
    ]
}