DeepSeek Chat Auto-Clicker

Automatically clicks buttons on DeepSeek chat interface

Size

1.2 KB

Version

1.0.1

Created

Feb 19, 2026

Updated

18 days ago

1// ==UserScript==
2// @name		DeepSeek Chat Auto-Clicker
3// @description		Automatically clicks buttons on DeepSeek chat interface
4// @version		1.0.1
5// @match		https://*.chat.deepseek.com/*
6// @icon		https://chat.deepseek.com/favicon.svg
7// ==/UserScript==
8(function() {
9    'use strict';
10
11    function clickButton() {
12        console.log('Looking for clickable button on DeepSeek chat...');
13        
14        // Find the main floating button in the chat interface
15        const floatingButton = document.querySelector('button.ds-floating-button.ds-floating-button--icon.ds-floating-button--lg[role="button"][aria-disabled="false"]');
16        
17        if (floatingButton) {
18            console.log('Found floating button, clicking it...');
19            floatingButton.click();
20        } else {
21            console.log('Button not found yet, will retry...');
22        }
23    }
24
25    function init() {
26        // Wait for the page to fully load
27        if (document.readyState === 'loading') {
28            document.addEventListener('DOMContentLoaded', () => {
29                setTimeout(clickButton, 1000);
30            });
31        } else {
32            // Page already loaded
33            setTimeout(clickButton, 1000);
34        }
35    }
36
37    init();
38})();