您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Helps the Userscript development process. Add hooks to arrays, objects, etc. It may be very useful for many purposes, while having config options that allow for customizeability. And is also useful for reverse-engineering a website, as you can see what is happening when, say a click event occurres.
uScript+ Automatically adds hooks to arrays and objects. For example:
const myArray = ["a", "b"];
myArray.push("c"); // This is where uScript+ jumps in
would have this text appear in the console:
uScript+ | ArrayPush: "c", Array: [a, b]
You can see that "c" was pushed to the array, and the array already contains "a" and "b" values.
Once uScript+ runs, it outputs the window and document objects to the console.
Anything that uScript+ logs to the console has the basic structure: "uScript+ | (msg)"
uScript+ applies to all sites, https or http. However, if you don't want uScript+ to run on a particular website, either disable it via your userscript manager, or use the OPTIONS.excluedSites option.
// Excluding the other options.
excludedSites: ["https://www.example.com", "http://www.example.com"];
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址