Potential changes for GitHub

Analyzes all pull requests within a GitHub repository for any potential changes related to a file.

Potential changes for GitHub란 무엇입니까?

Potential changes for GitHub은(는) Dzhavat Ushev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Analyzes all pull requests within a GitHub repository for any potential changes related to a file."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Potential changes for GitHub 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        ## Limitations

**Note**: This extension is still a **proof of concept** and has the following limitations:

- It is limited to Public repositories only.
- It is limited to repositories with 10 or less pull requests.
- GitHub has a rate limit of 60 requests per hour. Usually same requests are cached but if you want to check multiple files in different repositories, you can quickly "run out" of requests.

Most of the limitations above are there only because I wanted to save time and focused on solving the core idea behind the extension.

The source code behind this extension is available on GitHub (https://github.com/dzhavat/potential-changes-for-github). If you want to follow the development, file an issue or contribute, please check out the repo.

Git icon used in the Store icon is made by Raj Dev from www.freeicons.io                    

확장 프로그램 기본 정보

이름 Potential changes for GitHub Potential changes for GitHub
ID neehipoljbecacjcgcceflmlikiadkob
공식 URL https://chromewebstore.google.com/detail/potential-changes-for-git/neehipoljbecacjcgcceflmlikiadkob
설명 Analyzes all pull requests within a GitHub repository for any potential changes related to a file.
파일 크기 5.39 KB
설치 횟수 41
현재 버전 0.7.0
최근 업데이트 2020-10-16
출시 날짜 2019-04-24
평점 5.00/5 총 1 개의 평점
개발자 Dzhavat Ushev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/dzhavat/potential-changes-for-github
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Potential changes for GitHub",
    "version": "0.7.0",
    "homepage_url": "https:\/\/github.com\/dzhavat\/potential-changes-for-github",
    "description": "Analyzes all pull requests within a GitHub repository for any potential changes related to a file.",
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/api.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}