Jenkins Status Tab

Show the status of a Jenkins build in the tab title.

Vad är Jenkins Status Tab?

Jenkins Status Tab är en Chrome-tillägg utvecklad av christianvuerings, och dess huvudfunktion är "Show the status of a Jenkins build in the tab title.".

Tilläggsskärmbilder

screenshot

Ladda ner Jenkins Status Tab-förlängningens CRX-fil

Ladda ner Jenkins Status Tab-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

                        Show the status of a Jenkins build in the tab.

Notes:
 - This plugin automatically enables auto refresh which may cause some heavy data usage.                    

Grundläggande Information om Tillägg

Namn Jenkins Status Tab Jenkins Status Tab
ID bpfcpdnjoengdphlnneoilmphaelapnn
Officiell webbadress https://chrome.google.com/webstore/detail/jenkins-status-tab/bpfcpdnjoengdphlnneoilmphaelapnn
Beskrivning Show the status of a Jenkins build in the tab title.
Filstorlek 30.56 KB
Antal Installationer 17
Aktuell Version 0.0.1
Senast Uppdaterad 2016-11-23
Publiceringsdatum 2016-11-23
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare christianvuerings
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/christianvuerings/jenkins-status-tab
Hjälpsida URL https://github.com/christianvuerings/jenkins-status-tab/issues
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Jenkins Status Tab",
    "description": "Show the status of a Jenkins build in the tab title.",
    "version": "0.0.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "icons.js",
                "execute.js"
            ]
        }
    ],
    "icons": {
        "32": "32.png",
        "64": "64.png",
        "128": "128.png"
    },
    "browser_action": {
        "default_title": "Make this page blue"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "https:\/\/*\/",
        "http:\/\/*\/"
    ]
}