Github Comment Tracker

Tracks resolved / unresolved state of comments on github pull requests

Github Comment Trackerคืออะไร?

Github Comment Tracker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ben Bernard และคุณลักษณะหลักของมันคือ "Tracks resolved / unresolved state of comments on github pull requests"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github Comment Tracker

ดาวน์โหลดไฟล์ส่วนขยาย Github Comment Tracker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}