Copy LeetCode Title

Adds a button to copy the LeetCode problem title

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         Copy LeetCode Title
// @namespace    http://tampermonkey.net/
// @version      2025-05-17
// @description  Adds a button to copy the LeetCode problem title
// @author       You
// @match        https://leetcode.cn/problems/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=leetcode.cn
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function copyToClipboard(text) {
        navigator.clipboard.writeText(text).then(function() {
            console.log('Async: Copying to clipboard was successful!');
        }, function(err) {
            console.error('Async: Could not copy text: ', err);
        });
    }

    function addButton() {
        const titleElement = document.querySelector('.text-title-large');
        if (!titleElement) {
            console.error("Could not find the title element.");
            return;
        }

        const problemTitle = titleElement.textContent.trim();

        const copyButton = document.createElement('button');
        copyButton.textContent = '复制标题';
        copyButton.style.marginLeft = '10px'; // Add some spacing
        copyButton.style.padding = '5px 10px';
        copyButton.style.backgroundColor = '#f0f0f0';
        copyButton.style.border = '1px solid #ccc';
        copyButton.style.borderRadius = '5px';
        copyButton.style.cursor = 'pointer';

        copyButton.addEventListener('click', function() {
            copyToClipboard(problemTitle);
            // alert('标题已复制到剪贴板!'); // Provide feedback
        });

        const titleContainer = titleElement.parentNode;
        if (titleContainer) {
            titleContainer.appendChild(copyButton);
        } else {
            console.error("Could not find the title container.");
        }
    }

    // Add the button after the page loads
    window.addEventListener('load', addButton);
})();