uScript+

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.

スクリプトをインストールするには、Tampermonkey, GreasemonkeyViolentmonkey のような拡張機能のインストールが必要です。

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

スクリプトをインストールするには、TampermonkeyViolentmonkey のような拡張機能のインストールが必要です。

スクリプトをインストールするには、TampermonkeyUserscripts のような拡張機能のインストールが必要です。

このスクリプトをインストールするには、Tampermonkeyなどの拡張機能をインストールする必要があります。

このスクリプトをインストールするには、ユーザースクリプト管理ツールの拡張機能をインストールする必要があります。

(ユーザースクリプト管理ツールは設定済みなのでインストール!)

このスタイルをインストールするには、Stylusなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus などの拡張機能をインストールする必要があります。

このスタイルをインストールするには、Stylus tなどの拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

このスタイルをインストールするには、ユーザースタイル管理用の拡張機能をインストールする必要があります。

(ユーザースタイル管理ツールは設定済みなのでインストール!)

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください
作者
Mr. Scripter
1日のインストール数
0
累計インストール数
22
評価
0 0 0
バージョン
0.2
作成日
2023/01/04
更新日
2023/01/04
大きさ
5.03KB
ライセンス
不明
対象サイト
すべてのサイト

uScript+ | The Tool for Userscript Writers.

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.

Console

Once uScript+ runs, it outputs the window and document objects to the console.

What is a uScript+ log and what isn't?

Anything that uScript+ logs to the console has the basic structure: "uScript+ | (msg)"

What sites does uScript+ Apply to?

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.

Example disabling a site using the options.excludedSites option:

// Excluding the other options.
excludedSites: ["https://www.example.com", "http://www.example.com"];