Intercept and Copy window.open URLs (DeepSeek)

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

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
// ==UserScript==
// @name         Intercept and Copy window.open URLs (DeepSeek)
// @namespace    http://greasyfork.org/
// @version      1.0
// @description  Intercept window.open calls and copy the URL to clipboard on chat.deepseek.
// @match        *://chat.deepseek.com/*
// @grant        none
// ==/UserScript==

window.open = url => (navigator.clipboard.writeText(url), null);