// ==UserScript== // @name 在 bing词典 中聚合显示 有道 的结果 // @namespace http://tampermonkey.net/ // @version 2.02 // @license MIT // @description Adding results of youdao.com onto bing.com/dict, and display them together with the original results in a juxtaposition. // @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-idle // @compatible edge // @compatible chrome // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var wd = "none" var qry = window.location.search.substring(1); var vals = qry.split('&'); for(var i in vals){ var pair = vals[i].split('='); if(pair[0] == "q") wd = pair[1]; } if(wd.length > 50) return; var youdao_width = 640; var bing_width = 532; var margin = window.innerWidth -youdao_width -bing_width; var youdao_top_padding = 190; $("#b_footer").css("display", "none"); $(".sidebar").css("display", "none"); $(".lf_area").css({ "position": "absolute", "left": parseInt(margin * 0.34)+"px", }); let m = `
` $(m).appendTo(document.body) })();