Bing Dict website Wide Screen Display
// ==UserScript== // @name Bing Dict Wide Screen Display // @namespace http://tampermonkey.net/ // @version 0.1 // @description Bing Dict website Wide Screen Display // @author fvydjt // @match https://*.bing.com/dict/* // @icon https://www.google.com/s2/favicons?sz=64&domain=cn.bing.com // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; let css=` .lf_area { width: 890px !important; } `; GM_addStyle(css); })();