一. 内容简介
免费(daoban)gpt,同时去除广告,https://chat18.aichatos.xyz/,也可当gpt用,就是有点广告,大家也可以支持一下
二. 软件环境
2.1 Tampermonkey
三.主要流程
3.1 创建javascript脚本
点击添加新脚本
就是在
(function() {
'use strict';
// 在这编写自己的脚本
})();
脚本,含解析
// ==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...
})();
3.2 测试运行这个是网站
https://chat18.aichatos.xyz/
测试完成