KeepXFXingHuo

沉浸式体验科大讯飞的星火认知大模型,支持国产,感觉讯飞星火体验还不错

目前為 2023-05-08 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name              KeepXFXingHuo
// @description       沉浸式体验科大讯飞的星火认知大模型,支持国产,感觉讯飞星火体验还不错
// @version           1.0
// @author            xcanwin
// @namespace         https://github.com/xcanwin/KeepXFXingHuo/
// @supportURL        https://github.com/xcanwin/KeepXFXingHuo/
// @license           GPL-2.0-only
// @match             https://xinghuo.xfyun.cn/desk
// @run-at            document-idle
// ==/UserScript==

(function() {
    'use strict';

    const $ = (Selector, el) => (el || document).querySelector(Selector);
    const $$ = (Selector, el) => (el || document).querySelectorAll(Selector);

    window.onload = function() {
        setTimeout(function() {
            $(".pages_switchTheme__2DNsU").lastElementChild.click();//切换沉浸主题
            $(".pages_switchTheme__2DNsU").remove();//清理主题切换按钮
            $(".pages_window_switch__J40yj").lastElementChild.click();//进入历史对话
            $(".pages_window_switch__J40yj").firstElementChild.remove();//清理推荐对话
            //清理水印//各位先留着吧,支持国产
            $(".header_version_select__qCy40").remove();//清理顶部
            $(".welcome-window_prompt_wrapper__nExUq").remove();//清理首页提示词指引
            $(".affix_affix_content__-gEBT").parentElement.remove();//清理侧边栏
            $(".chat-window_tip__-THKF").remove();//清理尾部
        }, 1000);
    };

})();