在eureka页面点击实例就可以跳转swagger页面
// ==UserScript==
// @name Eureka实例跳转swagger
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 在eureka页面点击实例就可以跳转swagger页面
// @author 张文涛
// @match http://*/info
// @match *://*/info
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location.replace("/swagger-ui.html");
})();