Intercept and Copy window.open URLs (DeepSeek)

Intercept window.open calls and copy the URL to clipboard on chat.deepseek.

  1. // ==UserScript==
  2. // @name Intercept and Copy window.open URLs (DeepSeek)
  3. // @namespace http://gf.qytechs.cn/
  4. // @version 1.0
  5. // @description Intercept window.open calls and copy the URL to clipboard on chat.deepseek.
  6. // @match *://chat.deepseek.com/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. window.open = url => (navigator.clipboard.writeText(url), null);

QingJ © 2025

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