Github Travis CI Builds
Chrome extension to add Travis CI builds tab to Github UI
Cos'è Github Travis CI Builds?
Github Travis CI Builds è un'estensione di Chrome sviluppata da Dan Sosedoff, e la sua funzione principale è "Chrome extension to add Travis CI builds tab to Github UI".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github Travis CI Builds
Scarica i file di estensione Github Travis CI Builds in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This chrome extension adds a new tab to Github that displays project builds from Travis CI.
Supports viewing builds from public and private repositories. Informazioni di Base sull'Estensione
| Nome | |
| ID | dphnhapafaimelkockemokgfdocadbdo |
| URL Ufficiale | https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo |
| Descrizione | Chrome extension to add Travis CI builds tab to Github UI |
| Dimensione del File | 84.06 KB |
| Conteggio Installazioni | 16 |
| Versione Corrente | 1.1.4 |
| Ultimo Aggiornamento | 2019-02-13 |
| Data di Pubblicazione | 2019-02-13 |
| Sviluppatore | Dan Sosedoff |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/sosedoff/travis-github |
| Lingue Supportate | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Github Travis CI Builds",
"author": "Dan Sosedoff",
"description": "Chrome extension to add Travis CI builds tab to Github UI",
"version": "1.1.4",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*"
],
"js": [
"jquery.min.js",
"mustache.min.js",
"moment.min.js",
"templates.js",
"main.js"
],
"css": [
"main.css"
],
"run_at": "document_start"
}
],
"icons": {
"19": "logo.png",
"32": "logo.png",
"48": "logo.png",
"96": "logo.png",
"128": "logo.png"
},
"options_ui": {
"page": "options.html",
"chrome_style": true
}
} | |