Better Pull Request for GitHub

Add a file tree to GitHub Pull Requests

Better Pull Request for GitHub란 무엇입니까?

Better Pull Request for GitHub은(는) Tal Bereznitskey에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add a file tree to GitHub Pull Requests"입니다.

확장 프로그램 스크린샷

screenshot

Better Pull Request for GitHub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Make GitHub Pull Requests better with a file tree view and other UX improvements

- Browse pull requests with an IDE like file tree
- Private repositories support out of the box
- GitHub Enterprise support
- Other goodies: review viewed files, resizable tree, expand to full width and more

This is an open-source community project and is in no way affiliated or endorsed by GitHub.

For suggestions, issues and contribution, see https://github.com/berzniz/github_pr_tree                    

확장 프로그램 기본 정보

이름 Better Pull Request for GitHub Better Pull Request for GitHub
ID nfhdjopbhlggibjlimhdbogflgmbiahc
공식 URL https://chromewebstore.google.com/detail/better-pull-request-for-g/nfhdjopbhlggibjlimhdbogflgmbiahc
설명 Add a file tree to GitHub Pull Requests
파일 크기 405 KB
설치 횟수 10,000
현재 버전 1.0.37
최근 업데이트 2022-04-08
출시 날짜 2020-05-01
평점 4.88/5 총 215 개의 평점
개발자 Tal Bereznitskey
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/berzniz/github_pr_tree
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Better Pull Request for GitHub",
    "short_name": "Better PRs",
    "permissions": [
        "contextMenus",
        "storage",
        "*:\/\/*.github.com\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "better_github_prs.js"
            ],
            "css": []
        }
    ],
    "browser_action": {
        "default_icon": {
            "16": "16x16.png",
            "48": "48x48.png",
            "128": "128x128.png"
        },
        "default_popup": "options.html"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        "options.html",
        "*.woff2"
    ],
    "icons": {
        "16": "16x16.png",
        "48": "48x48.png",
        "128": "128x128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
    "description": "Add a file tree to GitHub Pull Requests",
    "version": "1.0.37"
}