Pretty Pull Requests (Github)

This extension applies various tweaks to the github pull-request code review pages.

Pretty Pull Requests (Github)란 무엇입니까?

Pretty Pull Requests (Github)은(는) Brent Yates에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension applies various tweaks to the github pull-request code review pages."입니다.

확장 프로그램 스크린샷

screenshot

Pretty Pull Requests (Github) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will add various features to the diff view on Github's pull request pages.

Supports both files changed and commit diffs.

Current Features:
- Click on the file name to collapse a file, or collapse from bottom up via an added button
- Collapse/Expand all
- Collapse/Expand all that match a regex pattern
- Collapse/Expand added/removed lines
- File tree view allowing you to collapse a directory, or jump directly to a file diff
- Github Enterprise Support (set your URL via right-clicking the address bar icon, and going to 'options')                    

확장 프로그램 기본 정보

이름 Pretty Pull Requests (Github) Pretty Pull Requests (Github)
ID ljnjpkadhhcdniohpfilddnhahoigdec
공식 URL https://chromewebstore.google.com/detail/pretty-pull-requests-gith/ljnjpkadhhcdniohpfilddnhahoigdec
설명 This extension applies various tweaks to the github pull-request code review pages.
파일 크기 412 KB
설치 횟수 1,338
현재 버전 2.11.1
최근 업데이트 2018-01-31
출시 날짜 2018-01-31
평점 3.95/5 총 21 개의 평점
개발자 Brent Yates
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/Yatser/prettypullrequests
도움말 페이지 URL https://github.com/Yatser/prettypullrequests/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pretty Pull Requests (Github)",
    "description": "This extension applies various tweaks to the github pull-request code review pages.",
    "version": "2.11.1",
    "icons": {
        "32": "ppr-logo\/32x32.png",
        "64": "ppr-logo\/64x64.png",
        "128": "ppr-logo\/128x128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "activeTab"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/pull\/*\/files",
                "https:\/\/github.com\/*\/commit*",
                "https:\/\/github.com\/*\/pulls*",
                "https:\/\/github.com\/*\/compare*",
                "https:\/\/github.com\/*\/*\/pulls*",
                "https:\/\/github.com\/*\/*\/pull\/*",
                "https:\/\/github.com\/*\/*\/pull\/*\/files",
                "https:\/\/github.com\/*\/*\/commit*",
                "https:\/\/github.com\/*\/*\/compare*"
            ],
            "js": [
                "jquery-1.9.1.min.js",
                "github.com.js"
            ],
            "css": [
                "pullrequest.css"
            ]
        }
    ],
    "page_action": {
        "default_icon": "ppr-logo\/128x128.png",
        "default_title": "Pretty Pull Requests",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "jquery-1.9.1.min.js"
    ],
    "options_page": "options.html"
}