Copy Page Source Button

adds a button that a=copies the source code

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 Page Source Button
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  adds a button that a=copies the source code
// @author       JouwNaam
// @match        *://*/*
// @grant        GM_setClipboard
// ==/UserScript==

(function() {
    'use strict';


    const button = document.createElement('button');
    button.textContent = '🖨️';
    button.style.position = 'fixed';
    button.style.left = '24px';
    button.style.bottom = '60px';
    button.style.padding = '6px 10px';
    button.style.backgroundColor = '#000000';
    button.style.color = 'white';
    button.style.border = 'none';
    button.style.borderRadius = '3px';
    button.style.fontSize = '14px';
    button.style.cursor = 'pointer';
    button.style.zIndex = '9999';

    document.body.appendChild(button);

    button.addEventListener('click', function() {
        const pageSource = document.documentElement.outerHTML;
        GM_setClipboard(pageSource);
        alert('Broncode is gekopieerd naar het klembord!');
    });
})();