AIIRL

REAL LIFE AI

目前为 2024-05-29 提交的版本,查看 最新版本

// ==UserScript==
// @name         AIIRL
// @version      1.0.0
// @description  REAL LIFE AI
// @author       jamesliu96
// @license      MIT
// @namespace    https://jamesliu.info/
// @homepage     https://gist.github.com/jamesliu96/fcdf86b41d9bd2e768e288cb7b36744f
// @match        https://www.doubao.com/*
// @match        https://www.ciciai.com/*
// @icon         https://lf-flow-web-cdn.doubao.com/obj/flow-doubao/doubao/web/logo-icon.png
// @icon         https://sf-flow-web-cdn.ciciaicdn.com/obj/ocean-flow-web-sg/cici_web/logo-icon-cici.png
// @connect      doubao.com
// @connect      ciciai.com
// ==/UserScript==

addEventListener('load', async () => {
  for (;;) {
    const el = Array.from(document.querySelectorAll('span')).find(x => x.className.includes('disclaimer-text') || x.textContent.includes('不能完全保障真实') || x.textContent.includes('Might not be accurate'));
    if (el) {
      const fn = () => {
        el.textContent = location.hostname === 'www.ciciai.com' ? 'Content generated by AI. Must not be accurate.' : '内容由豆包大模型生成,完全不能保障真实';
      };
      fn();
    }
    await new Promise(r => setTimeout(r, 100));
  }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址