Highlight Me in Buildbot
Highlight your commits on buildbot pages.
Что такое Highlight Me in Buildbot?
Highlight Me in Buildbot - это расширение Chrome, разработанное https://www.bluestatic.org, и его основная функция - "Highlight your commits on buildbot pages.".
Снимки экрана расширения
Скачать файл CRX расширения Highlight Me in Buildbot
Скачайте файлы расширений 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 |
Электронная почта | [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" } |