GitHub Version Tags

Displays the latest version of a project next to the repo name on GitHub.

GitHub Version Tags란 무엇입니까?

GitHub Version Tags은(는) joeyespo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays the latest version of a project next to the repo name on GitHub."입니다.

확장 프로그램 스크린샷

screenshot

GitHub Version Tags 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Displays the latest version of a project next to the repo name on GitHub.

Source code is on GitHub http://github.com/joeyespo/github-version-tags                    

확장 프로그램 기본 정보

이름 GitHub Version Tags GitHub Version Tags
ID kflokeeiigcmdejejgiajnefnpoaomjh
공식 URL https://chrome.google.com/webstore/detail/github-version-tags/kflokeeiigcmdejejgiajnefnpoaomjh
설명 Displays the latest version of a project next to the repo name on GitHub.
파일 크기 38.62 KB
설치 횟수 126
현재 버전 1.1.0
최근 업데이트 2017-10-01
출시 날짜 2017-10-01
평점 5.00/5 총 1 개의 평점
개발자 joeyespo
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://github.com/joeyespo/github-version-tags
도움말 페이지 URL http://github.com/joeyespo/github-version-tags/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Version Tags",
    "version": "1.1.0",
    "description": "Displays the latest version of a project next to the repo name on GitHub.",
    "author": "Joe Esposito ",
    "icons": {
        "19": "media\/icon_19.png",
        "38": "media\/icon_38.png",
        "48": "media\/icon_48.png",
        "128": "media\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "vendor\/compare-versions.js",
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "https:\/\/api.github.com\/*"
    ]
}