GitHub Release Downloads

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

Τι είναι το GitHub Release Downloads;

Το GitHub Release Downloads είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://addshore.com, και η κύρια λειτουργία του είναι "This extension displays the number of downloads GitHub releases have on the releases page.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης GitHub Release Downloads

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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
        }
    ]
}