github.monkeypatch.pullrequests

Keep track of pull requests you've viewed, approved, or rejected.

github.monkeypatch.pullrequests란 무엇입니까?

github.monkeypatch.pullrequests은(는) steven.m.wexler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Keep track of pull requests you've viewed, approved, or rejected."입니다.

확장 프로그램 스크린샷

screenshot

github.monkeypatch.pullrequests 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Keep track of pull requests you've viewed, approved, or rejected.  Approve a pull request by writing a comment with a thumbs up icon (:+1:) in the pull request conversation.  Reject a pull request by writing a comment with a thumbs down icon (:-1:) in the pull request conversation.  

Pull requests you've viewed, approved, or rejected are indicated by green, red, or yellow respectively.  The thumbs up / thumbs down icons represent how many people have approved / rejected a pull request.

Pull requests with commits you haven't seen are indicated with a "New Commits" annotation.

GitHub: https://github.com/steaks/githubpullrequestsmanager                    

확장 프로그램 기본 정보

이름 github.monkeypatch.pullrequests github.monkeypatch.pullrequests
ID khfpfmfiapjcfacafgjcigimaaakilen
공식 URL https://chromewebstore.google.com/detail/githubmonkeypatchpullrequ/khfpfmfiapjcfacafgjcigimaaakilen
설명 Keep track of pull requests you've viewed, approved, or rejected.
파일 크기 1.27 MB
설치 횟수 31
현재 버전 1.7.5
최근 업데이트 2015-06-27
출시 날짜 2015-06-27
개발자 steven.m.wexler
결제 유형 free
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "github.monkeypatch.pullrequests",
    "description": "Keep track of pull requests you've viewed, approved, or rejected.",
    "version": "1.7.5",
    "icons": {
        "128": "codeducky_partial_logo_128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/www.platform.githubenhancements.com\/*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "jquery.visible.js",
                "lodash.js",
                "angular.js",
                "jquery.hotkeys.js",
                "jquery.scrollTo.js",
                "GitHubPullRequestStatus.js"
            ],
            "css": [
                "GitHubPullRequestStatus.css"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-1.11.1.min.js",
            "GitHubPullRequestStatusBackground.js"
        ],
        "persistent": false
    }
}