弹出页面重定向前隐藏页面主体
This commit is contained in:
parent
73afeb34ed
commit
89a306918e
|
@ -1,7 +1,7 @@
|
||||||
// ==UserScript==
|
// ==UserScript==
|
||||||
// @name Translate
|
// @name Translate
|
||||||
// @namespace http://tampermonkey.net/
|
// @namespace http://tampermonkey.net/
|
||||||
// @version 5.3
|
// @version 5.4
|
||||||
// @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,10 @@
|
||||||
shadow.appendChild(style); // 内部样式表
|
shadow.appendChild(style); // 内部样式表
|
||||||
shadow.appendChild(link); // 外部样式表
|
shadow.appendChild(link); // 外部样式表
|
||||||
shadow.appendChild(icon); // 翻译图标加入 Shadow
|
shadow.appendChild(icon); // 翻译图标加入 Shadow
|
||||||
|
// 重定向前隐藏页面主体
|
||||||
|
if (gm.get(gm.REDIRECT_URL, '') && window.location.host == 'example.com') {
|
||||||
|
document.documentElement.style.display = 'none';;
|
||||||
|
}
|
||||||
window.addEventListener('DOMContentLoaded', (e) => {
|
window.addEventListener('DOMContentLoaded', (e) => {
|
||||||
log('DOM fully loaded and parsed');
|
log('DOM fully loaded and parsed');
|
||||||
// 重定向
|
// 重定向
|
||||||
|
|
Loading…
Reference in New Issue
Block a user