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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension displays the number of downloads GitHub releases have on the releases page."입니다.

확장 프로그램 스크린샷

screenshot

GitHub Release Downloads 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
        }
    ]
}