Potential changes for GitHub

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

Potential changes for GitHub là gì?

Potential changes for GitHub là một tiện ích mở rộng Chrome được phát triển bởi Dzhavat Ushev, và tính năng chính của nó là "Analyzes all pull requests within a GitHub repository for any potential changes related to a file.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Potential changes for GitHub

Tải xuống các tệp mở rộng Potential changes for GitHub dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ## 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Potential changes for GitHub Potential changes for GitHub
ID neehipoljbecacjcgcceflmlikiadkob
URL Chính Thức https://chromewebstore.google.com/detail/potential-changes-for-git/neehipoljbecacjcgcceflmlikiadkob
Mô tả Analyzes all pull requests within a GitHub repository for any potential changes related to a file.
Kích Thước Tệp 5.39 KB
Số Lần Cài Đặt 41
Phiên Bản Hiện Tại 0.7.0
Cập Nhật Lần Cuối 2020-10-16
Ngày Phát Hành 2019-04-24
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Dzhavat Ushev
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/dzhavat/potential-changes-for-github
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}