Greasy Fork is available in English.

Source Viewer

View the HTML source code of any online web page. (use the Tampermonkey Command Menu)

Fra og med 01.11.2020. Se den nyeste version.

// ==UserScript==
// @version 6.7.2.6
// @name Source Viewer
// @name:de Seitenquelltext anzeigen
// @description View the HTML source code of any online web page. (use the Tampermonkey Command Menu)
// @description:de Schauen Sie sich den Seitenquelltext von jeder beliebigen Website an.
// @author wack.3gp
// @copyright 2019+ , wack.3gp (https://greatest.deepsurf.us/users/4792)
// @namespace https://greatest.deepsurf.us/users/4792
// @supportURL https://greatest.deepsurf.us/scripts/4611/feedback
// @license CC BY-NC-ND 4.0; http://creativecommons.org/licenses/by-nc-nd/4.0/
// @noframes
// @compatible Chrome tested with Tampermonkey
// @contributionURL https://www.paypal.com/donate?hosted_button_id=9JEGCDFJJHWU8
// @contributionAmount €1.00
// @grant GM_registerMenuCommand
// @include *
// ==/UserScript==

GM_registerMenuCommand("view-source:"+window.location, function () {
    var source = "<html>";
    source += document.getElementsByTagName('html')[0].innerHTML;
    source += "</html>";
    source = source.replace(/</g, "&lt;").replace(/>/g, "&gt;");
    source = "<pre>" + source + "</pre>";
    var sourceWindow = window.open();
    sourceWindow.document.write(source);
    sourceWindow.document.close();
    if (window.focus) sourceWindow.focus();
});
// ==============