We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
These pairs should work the same way
rules pair
#%#//scriptlet("prevent-setTimeout", ".css('display','block');") #%#//scriptlet('prevent-setTimeout', '.css(\'display\',\'block\');')
should block setTimeout with stringified callback containing the next substring:
.css('display','block');
and pair
#%#//scriptlet("prevent-setTimeout", ".css(\"display\",\"block\");") #%#//scriptlet('prevent-setTimeout', '.css("display","block");')
should block setTimeout with stringified callback containing the next substring
.css("display","block");
How to check if they work
#%#//scriptlet('prevent-setTimeout', '.css(\'display\',\'block\');')
setTimeout(() => { console.log(`.css('display','block');`)}, 500);
set timeout should not be executed
after that
#%#//scriptlet('prevent-setTimeout', ".css('display','block');")
The text was updated successfully, but these errors were encountered:
stanislav-atr
No branches or pull requests
These pairs should work the same way
rules pair
should block setTimeout with stringified callback containing the next substring:
and pair
should block setTimeout with stringified callback containing the next substring
How to check if they work
#%#//scriptlet('prevent-setTimeout', '.css(\'display\',\'block\');')
set timeout should not be executed
after that
#%#//scriptlet('prevent-setTimeout', ".css('display','block');")
set timeout should not be executed
The text was updated successfully, but these errors were encountered: