BlueCat Address Manager Highlight Rows on Hover

Highlight the respective table row while hovering over it in BlueCat Address Manager

当前为 2018-06-05 提交的版本,查看 最新版本

// ==UserScript==
// @name        BlueCat Address Manager Highlight Rows on Hover
// @namespace   *
// @description Highlight the respective table row while hovering over it in BlueCat Address Manager
// @include     */app*
// @version     1
// @grant       none
// @author      Marius Galm
// @copyright   2018, Marius Galm
// @license		MIT
// @icon        https://www.bluecatnetworks.com/wp-content/uploads/2018/03/cropped-bluecat-favicon-300x300.png
// @require     http://code.jquery.com/jquery-latest.js
// ==/UserScript==

//jQuery fix
this.$ = this.jQuery = jQuery.noConflict(true);

$("#outerTable tr").not(':first').hover(
    function () {
        $(this).css("border","solid thin");
        $(this).css("border-color","#9FB5C5");

    },
    function () {
        $(this).css("border-color","");
        $(this).css("border","");

    }
);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址