🏠 返回首頁 

Greasy Fork is available in English.

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);