Github Travis CI Builds
Chrome extension to add Travis CI builds tab to Github UI
Vad är Github Travis CI Builds?
Github Travis CI Builds är en Chrome-tillägg utvecklad av Dan Sosedoff, och dess huvudfunktion är "Chrome extension to add Travis CI builds tab to Github UI".
Tilläggsskärmbilder
Ladda ner Github Travis CI Builds-förlängningens CRX-fil
Ladda ner Github Travis CI Builds-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 chrome extension adds a new tab to Github that displays project builds from Travis CI. Supports viewing builds from public and private repositories.
Grundläggande Information om Tillägg
Namn | |
ID | dphnhapafaimelkockemokgfdocadbdo |
Officiell webbadress | https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo |
Beskrivning | Chrome extension to add Travis CI builds tab to Github UI |
Filstorlek | 84.06 KB |
Antal Installationer | 16 |
Aktuell Version | 1.1.4 |
Senast Uppdaterad | 2019-02-13 |
Publiceringsdatum | 2019-02-13 |
Utvecklare | Dan Sosedoff |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sosedoff/travis-github |
Stödda Språk | 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 } } |