Show the AI translation without login
// ==UserScript==
// @name 百度翻译 - 无登陆 AI 翻译
// @name:zh-CN 百度翻译 - 无登陆 AI 翻译
// @namespace https://fanyi.baidu.com
// @version 0.0.1
// @author Soxfmr
// @description Show the AI translation without login
// @description:zh-CN 无登陆显示 AI 翻译
// @license MIT
// @copyright Copyright (c) [2025] [Soxfmr]
// @icon https://fanyi.baidu.com/favicon.ico
// @match *://fanyi.baidu.com/mtpe-individual/*
// @match *://fanyi.baidu.com/*
// @grant GM_addStyle
// @grant GM_log
// @run-at document-start
// ==/UserScript==
(function () {
'use strict';
var _GM_addStyle = /* @__PURE__ */ (() => typeof GM_addStyle != "undefined" ? GM_addStyle : void 0)();
var _GM_log = /* @__PURE__ */ (() => typeof GM_log != "undefined" ? GM_log : void 0)();
const css = `
.BKn4n1SM{max-height: 100% !important;}
`;
try {
_GM_addStyle(css);
} catch (e) {
_GM_log(new Error("GM_addStyle stopped working!"));
}
})();