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 |
Eメール | [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 } } |