Copy Page Source Button

adds a button that a=copies the source code

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==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!');
    });
})();