deepseek 页签显示聊天标题

动态更新页签标题DeepSeek聊天标题

// ==UserScript==
// @name         deepseek 页签显示聊天标题
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  动态更新页签标题DeepSeek聊天标题
// @author       wzj042
// @match        https://chat.deepseek.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=deepseek.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
setInterval(()=>{
    let title = document.title;
    let chat = document.querySelector('.d8ed659a');
    if (chat && chat.innerText !== title){
        document.title = chat.innerText;
    }
}, 500);
})();

QingJ © 2025

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