Chromium Buildbot Monitor
Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.
Chromium Buildbot Monitorとは何ですか?
Chromium Buildbot Monitorはhttp://chrome.google.comによって開発されたChromeの拡張機能で、その主な機能は「Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.」です。
拡張機能のスクリーンショット
Chromium Buildbot Monitor拡張機能のCRXファイルをダウンロード
Chromium Buildbot Monitor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
New in version 0.8.3:
- Stop monitoring user try jobs, it's DDoSing the trybots.
New in version 0.8.2:
- Automatically use login credentials from codereview.chromium.org if available.
- Update buildbot status live while the popup is open.
New in version 0.8.1:
- Display active try job status of the signed in user.
New in version 0.8.0:
- Fixed login issues.
New in version 0.7.7:
- Fixed contents of browser action popup (again).
- Sync notification settings.
New in version 0.7.6:
- Fixed contents of browser action popup.
New in version 0.7.5:
- Added desktop notifications on tree status changes. You can enable/disable these from the extension's options page (right click on the browser action icon and choose Options).
Source can be found here:
http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/extensions/buildbot/ 拡張機能の基本情報
| 名前 | |
| ID | oafaagfgbdpldilgjjfjocjglfbolmac |
| 公式URL | https://chrome.google.com/webstore/detail/chromium-buildbot-monitor/oafaagfgbdpldilgjjfjocjglfbolmac |
| 説明 | Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup. |
| ファイルサイズ | 31 KB |
| インストール数 | 304 |
| 現在のバージョン | 0.9.0 |
| 最終更新日 | 2014-08-13 |
| 公開日 | 2014-08-13 |
| 評価 | 3.86/5 合計 7 レビュー |
| 開発者 | http://chrome.google.com |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Chromium Buildbot Monitor",
"version": "0.9.0",
"description": "Displays the status of the Chromium buildbot in the toolbar. Click to see more detailed status in a popup.",
"icons": {
"128": "icon.png"
},
"background": {
"scripts": [
"utils.js",
"prefs.js",
"try_status.js",
"active_issues.js",
"bg.js"
]
},
"permissions": [
"notifications",
"storage",
"http:\/\/build.chromium.org\/",
"http:\/\/chromium-status.appspot.com\/",
"https:\/\/codereview.chromium.org\/"
],
"browser_action": {
"default_title": "",
"default_icon": "chromium.png",
"default_popup": "popup.html"
},
"options_page": "options.html",
"manifest_version": 2
} | |