We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d02a2dd commit 3a45337Copy full SHA for 3a45337
js-cookie-monitor-debugger-hook.js
@@ -76,6 +76,8 @@ GM_config.init({
76
function init() {
77
// 对于无法用单纯文本表示的规则,手动改这里吧
78
const additionalDebuggerRules = [];
79
+ // example:
80
+ // const additionalDebuggerRules = [{add: {name: "token"}}];
81
// @since v0.6 断点规则发生了向后不兼容变化,详情请查阅文档
82
const debuggerRules = [
83
...GM_config.get("EventDebugger.rules").split('\n').flatMap(x => {
@@ -87,8 +89,6 @@ function init() {
87
89
}),
88
90
...additionalDebuggerRules
91
];
- // example:
- // const debuggerRules = ["foo", /foo_\d+/];
92
93
// 设置事件断点是否开启,一般保持默认即可
94
const enableEventDebugger = {
0 commit comments