全球主机交流论坛
标题:
(搬运)免费无限制使用magai.co,支持gpt-4o等各大模型
[打印本页]
作者:
文心小助手
时间:
2024-7-23 20:02
提示:
作者被禁止或删除 内容自动屏蔽
作者:
卡尔
时间:
2024-7-23 20:04
能不能生成图片
作者:
文心小助手
时间:
2024-7-23 20:04
提示:
作者被禁止或删除 内容自动屏蔽
作者:
oneLN
时间:
2024-7-23 20:09
本帖最后由 oneLN 于 2024-7-23 20:26 编辑
哎呀呀。搞好了。但是呢。不能生图。
作者:
oneLN
时间:
2024-7-23 20:29
// ==UserScript==
// [url=home.php?mod=space&uid=5839]@name[/url] New Userscript
// @namespace http://tampermonkey.net/
// @version 2024-07-23
// @description 移除Magai.co上的模糊效果,隐藏特定元素,并启用文本输入
// @author Mahjongmaster88
// @match https://app.magai.co/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
function removeElements() {
const selectors = [
'.column.flex.bubble-r-container.baTwaZp1.Group.bubble-element',
'.baTydaY.greyout',
'.baTwaQaG.greyout',
'.column.flex.bubble-r-container.baTwaQaG.CustomElement.bubble-element > .column.flex.bubble-r-container.baTwcaY.CustomElement.bubble-element',
'.column.flex.bubble-r-container.baTydaY.CustomElement.bubble-element > .column.flex.bubble-r-container.baTwcaY.CustomElement.bubble-element',
'.column.flex.bubble-r-container.baTydaY.CustomElement.bubble-element',
'.column.flex.bubble-r-container.baTwaQaG.CustomElement.bubble-element'
];
selectors.forEach(selector => {
const elements = document.querySelectorAll(selector);
elements.forEach(element => {
element.style.display = 'none';
});
});
}
// 移除模糊效果相关代码
const observer = new MutationObserver(mutations => {
mutations.forEach(mutation => {
if (mutation.type === 'attributes' && mutation.attributeName === 'style') {
const element = mutation.target;
if (element.style.filter.includes('blur')) {
console.log('移除模糊效果:', element);
element.style.filter = 'none';
}
}
});
});
const removeBlurEffect = () => {
document.querySelectorAll('*').forEach(element => {
const style = window.getComputedStyle(element);
if (style.filter.includes('blur')) {
element.style.filter = 'none';
}
observer.observe(element, { attributes: true });
});
console.log('MutationObserver已启动。');
};
removeBlurEffect();
const bodyObserver = new MutationObserver(mutations => {
mutations.forEach(mutation => {
if (mutation.type === 'childList') {
mutation.addedNodes.forEach(node => {
if (node.nodeType === 1) { // ELEMENT_NODE
const style = window.getComputedStyle(node);
if (style.filter.includes('blur')) {
node.style.filter = 'none';
}
observer.observe(node, { attributes: true });
}
});
}
});
// 每当添加新元素时执行removeElements函数
removeElements();
// 每当添加新元素时执行enableTextInput函数
enableTextInput();
});
bodyObserver.observe(document.body, { childList: true, subtree: true });
// 启用文本输入功能
function enableTextInput() {
const textarea = document.querySelector('textarea#prompt');
if (textarea && textarea.disabled) {
textarea.disabled = false;
console.log('文本输入已启用。');
}
}
// 初始执行
removeElements();
enableTextInput();
})();
复制代码
上面那个前三排报错。我这直接用自带的替换了名字之类的
欢迎光临 全球主机交流论坛 (https://hostloc.onozo.cc/)
Powered by Discuz! X3.4