// ==UserScript== // @name bing dict 美化 // @namespace http://tampermonkey.net/ // @version 0.1 // @license MIT // @description 自用脚本 // @author 庶民player // @match *.bing.com/dict* // @icon https://cn.bing.com/sa/simg/favicon-2x.ico // @require https://cdn.staticfile.org/jquery/3.3.1/jquery.min.js // @run-at document-body // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var contentWidth = window.innerWidth - 450; $(".sidebar").css("display", "none"); $(".lf_area").css("width", contentWidth + "px"); $("#idiom_0").css("width", (contentWidth-25) + "px"); })();