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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension displays the number of downloads GitHub releases have on the releases page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Release Downloads एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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 } ] } |