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."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ 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 |
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 } ] } |