您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
As you already know, in sploop.io the console is no longer working, or rather, the output to the console. Perhaps you would like to continue using it? If yes, then use this script.
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greatest.deepsurf.us/scripts/444624/1048078/Sploop%20Console.js
Hello!
To add a console to your script, add to //==UserScript==
this:
// @require https://greatest.deepsurf.us/ru/scripts/444625-sploop-console-script/code/script.js
It should turn out something like this:
// ==UserScript==
// @name New Userscript
// @version 0.1
// @description -
// @author author
// @match http://*/*
// @require https://greatest.deepsurf.us/ru/scripts/444625-sploop-console-script/code/script.js
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @require https://code.jquery.com/ui/1.12.0/jquery-ui.min.js
// ==/UserScript==
When using this script, I ask you to connect the jQuery library!
// @require http://code.jquery.com/jquery-3.3.1.min.js
// @require https://code.jquery.com/ui/1.12.0/jquery-ui.min.js
To open the console, press F9
This console cannot replicate all the functions of the Chrome console, but I will try to do my best!
To add text to the console, enter:
console.log("Title", "Description", "Color")
console.log("Test", "It worked!")
console.log("Test", "It worked!", "blue")
Errors will be highlighted in red and they cannot be changed color
console.error("Title", "Description")
console.error("Test", "It didn't work!")
You can also add an array or an object to the console
But it doesn't work if you add an object to the array [{x:2}]
console.log("Title", "Array/Object", "Color")
console.log("Test", [0, 0, 1, 1, 1, 0], "blue")
console.log("Test", { x: 0, y: 0 }, "blue")