您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
View the HTML source code of any online web page. (use the Tampermonkey Command Menu)
当前为
- // ==UserScript==
- // @version 6.7.3.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 JAS1998
- // @copyright 2019+ , JAS1998 (https://greasyfork.org/users/4792)
- // @namespace https://greasyfork.org/users/4792
- // @supportURL https://greasyfork.org/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
- // @grant GM_notification
- // @match *://*/*
- // ==/UserScript==
- /* jshint esversion: 9 */
- GM_registerMenuCommand("Donate now 🎁", function () {
- alert("Hello, I'm JAS1998\nand i wrote this script as a hobby\nYou have been using this script for some time, if you find it useful, i would appreciate a small donation! =)");
- window.location="https://www.paypal.com/donate?hosted_button_id=9JEGCDFJJHWU8";
- });
- GM_registerMenuCommand("view-source:" + window.location, function () {
- if (GM_info.script.copyright.includes(GM_info.script.namespace)) {
- var source = "<html>";
- source += document.getElementsByTagName('html')[0].innerHTML;
- source += "</html>";
- source = source.replace(/</g, "<").replace(/>/g, ">");
- source = "<pre>" + source + "</pre>";
- var sourceWindow = window.open();
- sourceWindow.document.write(source);
- sourceWindow.document.close();
- if (window.focus) sourceWindow.focus();
- }
- else {
- alert("Please install the Orginal Version");
- location.href = GM_info.script.supportURL.replace("feedback", "");
- }
- });
- // ==============