Highlight Me in Buildbot

Highlight your commits on buildbot pages.

Vad är Highlight Me in Buildbot?

Highlight Me in Buildbot är en Chrome-tillägg utvecklad av https://www.bluestatic.org, och dess huvudfunktion är "Highlight your commits on buildbot pages.".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Highlight Me in Buildbot-förlängningens CRX-fil

Ladda ner Highlight Me in Buildbot-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Highlight Me in Buildbot Highlight Me in Buildbot
ID fkkgaddlippjidimcfbpllllclgnikdb
Officiell webbadress https://chromewebstore.google.com/detail/highlight-me-in-buildbot/fkkgaddlippjidimcfbpllllclgnikdb
Beskrivning Highlight your commits on buildbot pages.
Filstorlek 38.77 KB
Antal Installationer 186
Aktuell Version 1.4
Senast Uppdaterad 2013-05-01
Publiceringsdatum 2013-05-01
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://www.bluestatic.org
E-post [email protected]
Betalningssätt free
Tilläggswebbplats http://build.chromium.org/
Stödda Språk 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"
}