百度翻译精简

去除百度翻译无用内容,保留主要翻译功能。

目前為 2022-09-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name         百度翻译精简
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去除百度翻译无用内容,保留主要翻译功能。
// @author       Loyal-Wind
// @match        https://fanyi.baidu.com/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant        GM_addStyle
// @run-at       document-start
// ==/UserScript==

(function () {
  'use strict'

  const website = [
    {
        name: 'baidu',
        css: `
            .icon-collect, .navigation-wrapper, .domain-trans-wrapper, .header, .footer, .trans-other-right, .manual-trans-btn{display: none !important;}
        `
    }
  ]
  let url = window.location.href
  for (let i = 0; i < website.length; i++) {
    if (url.indexOf(website[i].name) !== -1) {
        return GM_addStyle(website[i].css)
    }
  }
})()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址