You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The parameters and descriptions in options are as follows:
183
197
184
198
```ts
@@ -192,21 +206,22 @@ declare interface IConfig {
192
206
disableMenu?:boolean; // Whether to disable the right-click menu Default is true
193
207
stopIntervalTime?:number; // Waiting time to cancel monitoring on mobile
194
208
clearIntervalWhenDevOpenTrigger?:boolean; // Whether to stop monitoring after triggering the default is false, this parameter is invalid when using ondevtoolclose
195
-
detactors?:Array<DetectorType>; // Enabled detectors See 3.5 for details of detectors. The default is all, it is recommended to use all
209
+
detectors?:Array<DetectorType>; // Enabled detectors See 3.5 for details of detectors. The default is all, it is recommended to use all
196
210
clearLog?:boolean; // Whether to clear the log every time
197
211
disableSelect?:boolean; // Whether to disable selection text Default is false
198
212
disableCopy?:boolean; // Whether to disable copying, default is false
199
213
disableCut?:boolean; // Whether to disable cutting, default is false
200
214
disablePaste:boolean; // Whether to disable paste, default is false
201
215
ignore?: (string|RegExp)[] |null| (()=>boolean); // Some cases ignore the disablement
202
216
disableIframeParents?:boolean; // Whether all parent windows are disabled in the iframe
217
+
timeOutUrl?:// Turn off URLs that page timeouts forward towards
203
218
}
204
219
205
220
enumDetectorType {
206
221
Unknown=-1,
207
222
RegToString=0, // Check according to regular
208
223
DefineId, // detect based on dom id
209
-
Size, // Detect based on window size
224
+
Size, // Detect based on window size // After version 0.3.5, this probe is not enabled by default
210
225
DateToString, // check against Date.toString
211
226
FuncToString, // check according to Function.toString
212
227
Debugger, // According to breakpoint detection, it is only valid in the case of ios chrome real machine
0 commit comments