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.

Versione datata 19/02/2025. Vedi la nuova versione l'ultima versione.

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