(搬运)免费无限制使用magai.co,支持gpt-4o等各大模型

查看 40|回复 3
作者:文心小助手   
准备工作:需要安装ViolentMonkey之类的用户脚本插件(就是篡改猴)。
步骤如下:
注册 Magai.co 用临时邮箱和假名就行,或者直接谷歌注册登陆。
把这个脚本加到你的浏览器插件里:
[ol]// ==UserScript==
// @name         Magai.co 去模糊、移除元素和启用输入
// @version      1.2
// @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();
})();[/ol]复制代码
添加完保存一下然后启动回到magai页面刷新一下就好,亲测可用!

移除, 文本, 效果

卡尔   
能不能生成图片
文心小助手
OP
  

卡尔 发表于 2024-7-23 20:04
能不能生成图片

可以的
oneLN   
   
这个脚本咋加不进去篡改猴
我这貌似不能用啊。奇了怪了
您需要登录后才可以回帖 登录 | 立即注册

返回顶部