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 |
Eメール | [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" ] } ] } |