Highlight Me in Buildbot
Highlight your commits on buildbot pages.
Highlight Me in Buildbotとは何ですか?
Highlight Me in Buildbotはhttps://www.bluestatic.orgによって開発されたChromeの拡張機能で、その主な機能は「Highlight your commits on buildbot pages.」です。
拡張機能のスクリーンショット
Highlight Me in Buildbot拡張機能のCRXファイルをダウンロード
Highlight Me in Buildbot拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension will inject itself into all build.chromium.org console pages. You specify your full committer email in the options page and then it will highlight all your commits as they're cycling on the waterfall.
拡張機能の基本情報
名前 | Highlight Me in Buildbot |
ID | fkkgaddlippjidimcfbpllllclgnikdb |
公式URL | https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb |
説明 | Highlight your commits on buildbot pages. |
ファイルサイズ | 38.77 KB |
インストール数 | 186 |
現在のバージョン | 1.4 |
最終更新日 | 2013-05-01 |
公開日 | 2013-05-01 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | https://www.bluestatic.org |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | http://build.chromium.org/ |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Highlight Me in Buildbot", "version": "1.4", "manifest_version": 2, "description": "Highlight your commits on buildbot pages.", "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/build.chromium.org\/*", "http:\/\/chromegw.corp.google.com\/*", "http:\/\/build.webkit.org\/console*", "http:\/\/chromium-build-master.appspot.com\/*", "https:\/\/chromium-build-master.appspot.com\/*", "http:\/\/chromium-build.appspot.com\/*", "https:\/\/chromium-build.appspot.com\/*" ], "css": [ "highlight-me.css" ], "js": [ "highlight-me.js" ] } ], "options_page": "options.html" } |