Github Travis CI Builds
Chrome extension to add Travis CI builds tab to Github UI
什么是Github Travis CI Builds?
Github Travis CI Builds是由Dan Sosedoff开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to add Travis CI builds tab to Github UI”。
扩展截图
下载Github Travis CI Builds扩展crx文件
下载Github Travis CI Builds扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This chrome extension adds a new tab to Github that displays project builds from Travis CI. Supports viewing builds from public and private repositories.
扩展基本信息
名称 | |
ID | dphnhapafaimelkockemokgfdocadbdo |
官方URL | https://chrome.google.com/webstore/detail/github-travis-ci-builds/dphnhapafaimelkockemokgfdocadbdo |
简介 | Chrome extension to add Travis CI builds tab to Github UI |
文件大小 | 84.06 KB |
安装次数 | 16 |
当前版本 | 1.1.4 |
更新时间 | 2019-02-13 |
上架时间 | 2019-02-13 |
开发者 | Dan Sosedoff |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sosedoff/travis-github |
支持的语言 | 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 } } |