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 |
官方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" ] } ] } |