主 题:GPT team使用上限横幅去除油猴脚本
发 布 者:juneho
标签分类: 技术
时 间:2026-07-14 17:13:35
内容预览:开了好几台team车,今天看到gpt team会有提示工作区有成员达到使用上限的横幅,一般来说比较难去掉,参考网上大佬弄了个油猴脚本,直接新建脚本保存运行,刷新页面即可,实测完美去掉,需要的佬可以给个鸡腿 // ==UserScript==// @name ChatGPT 自动隐藏 Team 使用上限提示// @namespace https://chatgpt.com/// @version 1.0.0// @description 自动隐藏“工作区有成员达到使用上限”横幅,不修改账户或充值设置// @match https://chatgpt.com/*// @match https://chat.openai.com/*// @grant none// @run-at document-end// ==/UserScript==(function () { 'use strict'; // 沿用原脚本提供的 XPath const TARGET_XPATH = '/html/body/div[2]/div/div[1]/div/div[2]/div[1]/div[1]'; // 删除前必须匹配此文字,避免误隐藏其他区域 const TARGET_TEXT = '工作区有成员达到使用上限'; const HIDDEN_ATTRIBUTE = 'data-tm-team-limit-hidden'; const STYLE_ID = 'tm-team-limit-hidden-style'; function getElementByXPath(xpath) { try { return
直达链接: https://www.nodeseek.com/post-821458-1
发 布 者:juneho
标签分类: 技术
时 间:2026-07-14 17:13:35
内容预览:开了好几台team车,今天看到gpt team会有提示工作区有成员达到使用上限的横幅,一般来说比较难去掉,参考网上大佬弄了个油猴脚本,直接新建脚本保存运行,刷新页面即可,实测完美去掉,需要的佬可以给个鸡腿 // ==UserScript==// @name ChatGPT 自动隐藏 Team 使用上限提示// @namespace https://chatgpt.com/// @version 1.0.0// @description 自动隐藏“工作区有成员达到使用上限”横幅,不修改账户或充值设置// @match https://chatgpt.com/*// @match https://chat.openai.com/*// @grant none// @run-at document-end// ==/UserScript==(function () { 'use strict'; // 沿用原脚本提供的 XPath const TARGET_XPATH = '/html/body/div[2]/div/div[1]/div/div[2]/div[1]/div[1]'; // 删除前必须匹配此文字,避免误隐藏其他区域 const TARGET_TEXT = '工作区有成员达到使用上限'; const HIDDEN_ATTRIBUTE = 'data-tm-team-limit-hidden'; const STYLE_ID = 'tm-team-limit-hidden-style'; function getElementByXPath(xpath) { try { return
直达链接: https://www.nodeseek.com/post-821458-1