修复弹出页面事件触发时机

This commit is contained in:
example 2019-03-23 10:09:56 +08:00
parent a268dca2cb
commit 73afeb34ed

View File

@ -1,7 +1,7 @@
// ==UserScript== // ==UserScript==
// @name Translate // @name Translate
// @namespace http://tampermonkey.net/ // @namespace http://tampermonkey.net/
// @version 5.2 // @version 5.3
// @description 划词翻译调用“金山词霸、有道词典有道翻译、Google Translate谷歌翻译、沪江小D、搜狗翻译、必应词典必应翻译、Microsoft Translator必应在线翻译、海词词典、百度翻译、Oxford Learner's Dictionaries、Oxford Dictionaries、Merriam-Webster、汉典、PDF 划词翻译、Google Search、Bing Search必应搜索、百度搜索、Wikipedia Search维基百科搜索”网页翻译 // @description 划词翻译调用“金山词霸、有道词典有道翻译、Google Translate谷歌翻译、沪江小D、搜狗翻译、必应词典必应翻译、Microsoft Translator必应在线翻译、海词词典、百度翻译、Oxford Learner's Dictionaries、Oxford Dictionaries、Merriam-Webster、汉典、PDF 划词翻译、Google Search、Bing Search必应搜索、百度搜索、Wikipedia Search维基百科搜索”网页翻译
// @author https://github.com/barrer // @author https://github.com/barrer
// @match http://*/* // @match http://*/*
@ -392,6 +392,8 @@
shadow.appendChild(style); // 内部样式表 shadow.appendChild(style); // 内部样式表
shadow.appendChild(link); // 外部样式表 shadow.appendChild(link); // 外部样式表
shadow.appendChild(icon); // 翻译图标加入 Shadow shadow.appendChild(icon); // 翻译图标加入 Shadow
window.addEventListener('DOMContentLoaded', (e) => {
log('DOM fully loaded and parsed');
// 重定向 // 重定向
var redirect_url = gm.get(gm.REDIRECT_URL, ''); var redirect_url = gm.get(gm.REDIRECT_URL, '');
log('redirect_url:' + redirect_url); log('redirect_url:' + redirect_url);
@ -410,6 +412,7 @@
if (text && window.location.host in hostCustomMap) { if (text && window.location.host in hostCustomMap) {
dataTransfer.beforeCustom(hostCustomMap[window.location.host]); dataTransfer.beforeCustom(hostCustomMap[window.location.host]);
} }
});
// 鼠标事件:防止选中的文本消失 // 鼠标事件:防止选中的文本消失
document.addEventListener('mousedown', function (e) { document.addEventListener('mousedown', function (e) {
if (e.target == icon || (e.target.parentNode && e.target.parentNode == icon)) { // 点击了翻译图标 if (e.target == icon || (e.target.parentNode && e.target.parentNode == icon)) { // 点击了翻译图标