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.”。
擴展截圖
下載Potential changes for GitHub擴展crx文件
下載Potential changes for GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
## 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 |
ID | neehipoljbecacjcgcceflmlikiadkob |
官方網址 | 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" ] } ] } |