Skip to content

Instantly share code, notes, and snippets.

@iwengx
Last active January 27, 2024 09:57
Show Gist options
  • Save iwengx/be2d30e6a9cb3cfa9dda53a8910e3b4c to your computer and use it in GitHub Desktop.
Save iwengx/be2d30e6a9cb3cfa9dda53a8910e3b4c to your computer and use it in GitHub Desktop.
【油猴脚本】去除百度翻译页面中的多余广告和元素。
// ==UserScript==
// @name 🔥 持续更新 🔥 去除百度翻译页面中的多余广告和元素
// @version 0.2.6
// @description 去除百度翻译页面中的多余广告和元素。
// @author WengX
// @namespace https://github.com/iwengx
// @supportURL https://gist.github.com/iwengx/be2d30e6a9cb3cfa9dda53a8910e3b4c
// @match *://fanyi.baidu.com/*
// @icon https://img1.imgtp.com/2023/02/25/YCeeiEQ1.png
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
(function() {
'use strict';
/** 清除样式 */
const purge_css = `
#app-read,
#transOtherRight,
.footer,
.extra-wrap,
.op-trans-fb,
.nav-dxy-logo,
.nav-sort-btn,
.new-icon-btn,
.dictionary-tags,
.note-expand-btn,
.manual-trans-btn,
.dictionary-bottom,
.navigation-wrapper,
.new-domain-wrapper:before,
.file-icon,
.ai-trans-btn
{
display: none !important;
}
`
/** 设置清除样式 */
GM_addStyle(purge_css);
/** 自定义样式 */
const custom_css = `
.trans-other-wrap-left-part { width: 100% !important; }
#side-nav .nav-ol .nav-search-again,
#side-nav .nav-item { font-weight: unset; }
#side-nav .nav-item span { color: rgb(0 0 0 / 45%); }
`
/** 设置自定义样式 */
GM_addStyle(custom_css);
// Your code here...
})();
@iwengx
Copy link
Author

iwengx commented Feb 25, 2023

下载地址:Greasy Fork

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment