VSO PR Auto Complete
Click the vso complete pull request button when all are status options are green.
VSO PR Auto Completeとは何ですか?
VSO PR Auto Completeはandrew.moldovan1991によって開発されたChromeの拡張機能で、その主な機能は「Click the vso complete pull request button when all are status options are green.」です。
拡張機能のスクリーンショット
VSO PR Auto Complete拡張機能のCRXファイルをダウンロード
VSO PR Auto Complete拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
For everyone working with VSO and having to babysit your pull requests as you wait for builds to finish, this chrome extension is for you! Because builds take a fairly long time (in the order of minutes) it is highly likely that on a team of moderate size, as you wait for your build to finish, somebody else will check into the base branch. This will kick off a new merge evaluation, which kicks off another build. And so on. Having to sit and wait for this to go through and to remember to come back right after the build finished so that you can check in, is a real pain and wasted time. The extension will click the re-evaluate button for you, wait until builds are finished, click the complete pull request button and will alert you to any problems.
拡張機能の基本情報
名前 | VSO PR Auto Complete |
ID | gdhnhnnblbccnkleobllhgmbolbjpeca |
公式URL | https://chromewebstore.google.com/detail/vso-pr-auto-complete/gdhnhnnblbccnkleobllhgmbolbjpeca |
説明 | Click the vso complete pull request button when all are status options are green. |
ファイルサイズ | 142 KB |
インストール数 | 34 |
現在のバージョン | 1.6 |
最終更新日 | 2015-11-18 |
公開日 | 2015-11-18 |
評価 | 4.00/5 合計 3 レビュー |
開発者 | andrew.moldovan1991 |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VSO PR Auto Complete", "description": "Click the vso complete pull request button when all are status options are green.", "version": "1.6", "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.visualstudio.com\/*" ], "js": [ "jquery-1.11.3.min.js", "content.js" ] } ], "permissions": [ "activeTab", "tabs", "webNavigation", "https:\/\/ajax.googleapis.com\/", "declarativeContent" ] } |