您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Edit UI https://my.jia.360.cn/web/myList
当前为
// ==UserScript== // @name vbcs // @namespace // @version 1.0 // @description Edit UI https://my.jia.360.cn/web/myList // @author Paul Nguyen // @grant none // @include /^https?://trading\.vcbs\.com\.vn/.*$/ // @namespace vbcs // ==/UserScript== $(function() { // @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js var stype = '<style>'; stype += ' #SHB_TLChart { display: none; } '; stype += ' #priceBoardView > div > table > tbody > tr > td:nth-child(2) { display: none; } '; stype += ' div.headerMenu { display: none; } '; stype += ' div#accountBar { display: none; } '; stype += ' div.headerTop { display: none; } '; stype += ' body, table, tr, td, div, input, select, .dxgvHSDC { background-color: rgb(48, 48, 47) !important; background: none; } '; stype += ' body, table, tr, td, div, input, span, select { color: #ccc !important; } '; stype += ' #Grid_Currenttock_DXMainTable td { color: #ccc !important; } '; stype += ' #NormalOrderGrid_DXMainTable td { color: #ccc !important; } '; stype += ' #OrderList_DXMainTable td { color: #ccc !important; } '; stype += ' #ConOrderList_DXMainTable td { color: #ccc !important; } '; stype += ' .tabOrderActive { border-bottom: 3px #505050 solid !important; } '; stype += ' #Grid_Currenttock_DXFooterTable { display: none; } '; stype += ' .choose_pages { border: #505050 thin solid !important; } '; stype += ' input[src="/OnlineTrading/Content/Images/refresh3.png"] { display: none; } '; stype += '<style>'; $("body").prepend(stype); });