当前位置:   article > 正文

免费(daoban)gpt,同时去除广告_chat.18

chat.18

一. 内容简介

免费(daoban)gpt,同时去除广告,https://chat18.aichatos.xyz/,也可当gpt用,就是有点广告,大家也可以支持一下

二. 软件环境

2.1 Tampermonkey

三.主要流程

3.1 创建javascript脚本

点击添加新脚本
在这里插入图片描述
就是在

(function() {
    'use strict';
    // 在这编写自己的脚本
})();
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

脚本,含解析

// ==UserScript==
// @name         盗版gpt去广告
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  删除盗版gpt广告
// @author       You
// @match        https://chat18.aichatos.xyz/*
// @icon         https://img-blog.csdnimg.cn/f5d99485009b4e3b8a1de33064202353.jpeg?x-oss-process=image/resize,m_fixed,h_224,w_224
// @grant        none
// @license MIT
// ==/UserScript==




(function() {
    'use strict';
    function delAdver() {
        function del() {
           var hash = window.location.hash; // 获取当前 URL 的哈希部分
            var adv = document.querySelector(".flex.items-center.flex-col.justify-center.mt-4.text-center")

            if (adv === null) {
                // console.log('adv does not exist'); // 如果 div 不存在,则输出提示信息
            } else {
                // console.log('adv exists'); // 如果 div 存在,则输出提示信息
                adv = adv.querySelector("div")
                if (adv === null) {
                    // console.log('adv does not exist'); // 如果 div 不存在,则输出提示信息
                } else {
                    adv.remove()
                }


            }

        }

        // 监听新建按钮的点击事件
        var newButton = document.querySelector('.n-button.n-button--default-type.n-button--medium-type.n-button--block.n-button--dashed')
        newButton.addEventListener('click', del);

        var preButton = document.querySelector('.flex.flex-col.gap-2.text-sm')

        preButton.addEventListener('click', del);
        del()
    }
    function fullScreenAndDoubleTime() {
        delAdver();
        tryAndTryFns.pop();
    }

    // 不停的尝试
    let tryAndTryFns = [];
    function tryAndTry() {
        setInterval(() => {
            // tryAndTryFns.forEach(f => f());: 在每个定时间隔,tryAndTry函数会遍历数组 tryAndTryFns 中的所有函数,并且调用这些函数
            tryAndTryFns.forEach(f => f());
        },100);
    }
    // 从这开始
    setTimeout(() => {
        tryAndTryFns.push(fullScreenAndDoubleTime);
        // 开始执行
        tryAndTry();
    },100);
    // Your code here...
})();
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68

3.2 测试运行这个是网站

https://chat18.aichatos.xyz/
在这里插入图片描述

测试完成
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/671231
推荐阅读
相关标签
  

闽ICP备14008679号