1👍
since you are getting css selector syntax error add space
after body
:
document.querySelectorAll("body *:not(script):not(style):not(title)");
or small:
document.querySelectorAll("body *:not(script,style,title)");
Source:stackexchange.com