您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
When double click a word, show it's meanings
// ==UserScript== // @name SpanishDict Quick Translatoin // @namespace http://tampermonkey.net/ // @version 0.2.4 // @description When double click a word, show it's meanings // @author Andy // @match http://www.spanishdict.com/* // @exclude http://www.spanishdict.com/answers/* // ==/UserScript== (($) => { $(() => { $('span.icon-dash').text(' '); }); const tipUrl = 'http://www.spanishdict.com/dictionary/quick_translation?word='; const dictUrl = 'http://www.spanishdict.com/translate/'; const audioUrl = 'http://audio1.spanishdict.com/audio?lang=es&text='; let timeoutHandle; const playSound = (url) => { var audio = document.createElement('audio'); audio.style.display = "none"; audio.src = url; audio.autoplay = true; audio.onended = function(){ audio.remove(); //Remove when played. }; document.body.appendChild(audio); }; const hideTip = () => { clearTimeout(timeoutHandle); $('body>.tooltip').remove(); }; const showTip = (source, tip, x, y) => { hideTip(); playSound(audioUrl + source); if (tip.length === 0) { tip = 'no quick translation found'; } else { tip = `<a style="color:#fff" target="spanishdict" href="${dictUrl + source}">${tip}</a>`; } const $tip = $(`<div class="tooltip fade top in" style="display: block;"><div class="tooltip-arrow"></div><div class="tooltip-inner">${tip}</div></div>`); $('body').append($tip); let width = $tip.outerWidth(); let height = $tip.outerHeight(); $tip.css({ left: x - width / 2, top: y - height - 5 }); timeoutHandle = setTimeout(hideTip, 5000); }; $('body').click(hideTip); $('.main-container').dblclick((e) => { const selected = window.getSelection().toString().trim(); if (selected.length && selected.indexOf(' ') === -1) { fetch(tipUrl + selected) .then(res => res.text()) .then(result => { result = result.trim().replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">").replace(/"/g, """).replace(/'/g, "'"); showTip(selected, result, e.pageX, e.pageY); }); } }); })(jQuery);