Github Travis CI Builds
Chrome extension to add Travis CI builds tab to Github UI
Wat is Github Travis CI Builds?
Github Travis CI Builds is een Chrome-extensie ontwikkeld door Dan Sosedoff, en de belangrijkste functie is "Chrome extension to add Travis CI builds tab to Github UI".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Travis CI Builds
Download Github Travis CI Builds-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This chrome extension adds a new tab to Github that displays project builds from Travis CI. Supports viewing builds from public and private repositories.
Basisinformatie over de Extensie
Naam | |
ID | dphnhapafaimelkockemokgfdocadbdo |
Officiële URL | https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo |
Beschrijving | Chrome extension to add Travis CI builds tab to Github UI |
Bestandsgrootte | 84.06 KB |
Aantal Installaties | 16 |
Huidige Versie | 1.1.4 |
Laatst Bijgewerkt | 2019-02-13 |
Publicatiedatum | 2019-02-13 |
Ontwikkelaar | Dan Sosedoff |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/sosedoff/travis-github |
Ondersteunde Talen | 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 } } |