Github Comment Tracker

Tracks resolved / unresolved state of comments on github pull requests

Github Comment Tracker란 무엇입니까?

Github Comment Tracker은(는) Ben Bernard에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tracks resolved / unresolved state of comments on github pull requests"입니다.

확장 프로그램 스크린샷

screenshot

Github Comment Tracker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Adds 'Resolved' comment tracking to github pull requests.  If you mark a comment as resolved, the comment id (and only the id) is stored in a public database hosted on Parse.

If all comments are not resolved, displays a warning next to the merge button.

Repo available here: https://github.com/benbernard/CommentTracker - Issues / pulls / etc welcome

CHANGES:
  1.1.11 - Fix for more github changes
  1.1.10 - Fix Display of unresolved comments collection
  1.1.9 - Fixes for new github dom changes
  1.1.8 - Fixes for unresolved comment list
  1.1.7 - Various UI improvements from @alexbt a) Put unresolved comments at bottom of PR b) have status on #files tab c) tweaks to options page
  1.1.6 - Change backend server
  1.1.5 - Fix un-hiding unresolved comments with github codereview changes
  1.1.4 - Fix tracking with github code-review changes
  1.1.3 - Fix button display (new github changes)
  1.1.2 - UI broken with github updated, fixed.
  1.1.1 - Fix when also working with Wide Github extension
  1.1 - Change styling of controls, Fix bug on applying when navigating from /pulls
  1.0.1 - Make polling on PRs configurable                    

확장 프로그램 기본 정보

이름 Github Comment Tracker Github Comment Tracker
ID dkjmlcpmijiiejngafklkleghnaiabpa
공식 URL https://chromewebstore.google.com/detail/github-comment-tracker/dkjmlcpmijiiejngafklkleghnaiabpa
설명 Tracks resolved / unresolved state of comments on github pull requests
파일 크기 69.07 KB
설치 횟수 2,371
현재 버전 1.1.11
최근 업데이트 2018-08-02
출시 날짜 2018-08-01
평점 1.00/5 총 1 개의 평점
개발자 Ben Bernard
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/benbernard/CommentTracker
도움말 페이지 URL https://github.com/benbernard/CommentTracker/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Comment Tracker",
    "description": "Tracks resolved \/ unresolved state of comments on github pull requests",
    "version": "1.1.11",
    "permissions": [
        "https:\/\/github.com\/",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/pull*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "underscore-min.js",
                "parse-1.6.14.min.js",
                "waitForKeyElements.js",
                "tracker.js"
            ],
            "css": [
                "main.css"
            ]
        }
    ],
    "options_page": "options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "options.html"
    }
}