Github Travis CI Builds
Chrome extension to add Travis CI builds tab to Github UI
What is Github Travis CI Builds?
Github Travis CI Builds is a Chrome extension developed by Dan Sosedoff, and its main feature is "Chrome extension to add Travis CI builds tab to Github UI".
Extension Screenshots
Download Github Travis CI Builds Extension CRX File
Download Github Travis CI Builds extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This chrome extension adds a new tab to Github that displays project builds from Travis CI. Supports viewing builds from public and private repositories.
Extension Basic Information
Name | |
ID | dphnhapafaimelkockemokgfdocadbdo |
Official URL | https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo |
Description | Chrome extension to add Travis CI builds tab to Github UI |
File Size | 84.06 KB |
Installation Count | 16 |
Current Version | 1.1.4 |
Last Updated | 2019-02-13 |
Publish Date | 2019-02-13 |
Developer | Dan Sosedoff |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sosedoff/travis-github |
Supported Languages | 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 } } |