GitHub Release Downloads
This extension displays the number of downloads GitHub releases have on the releases page.
Qu'est-ce que GitHub Release Downloads ?
GitHub Release Downloads est une extension Chrome développée par https://addshore.com, et sa fonction principale est "This extension displays the number of downloads GitHub releases have on the releases page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Release Downloads
Téléchargez les fichiers d'extension GitHub Release Downloads au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | GitHub Release Downloads |
ID | ncgomhdgmkicjeclohgokhciihpfdlhi |
URL Officiel | https://chromewebstore.google.com/detail/github-release-downloads/ncgomhdgmkicjeclohgokhciihpfdlhi |
Description | This extension displays the number of downloads GitHub releases have on the releases page. |
Taille du Fichier | 15.76 KB |
Nombre d'Installations | 504 |
Version Actuelle | 1.3.4 |
Dernière Mise à Jour | 2023-01-17 |
Date de Publication | 2020-05-30 |
Évaluation | 4.33/5 Total 9 Évaluations |
Développeur | https://addshore.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://addshore.com/2015/04/github-release-download-count-chrome-extension/ |
URL de la Page d'Aide | https://github.com/addshore/chrome-github-release-downloads |
Langues Prises en Charge | 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 } ] } |