javascript - (userscript/tampermonkey) not allowing website to detect my mouse movment/clicks -


  1. senario = there website , put mouse inside website shows online.
  2. what want = want bypass want able put mouse in website , copy , paste text while still seen offline.
  3. what did = using tampermonkey chrome userscript:
document.addeventlistener("mousemove", function(e){     e.stopimmediatepropagation(); }, true); 
  1. the problem = works can put mouse inside website without showing online. click copy text reveal self online.

is there way can modify userscript can copy , paste text without website knowing online!? solution helpful!

you try disabling javascript while doing this, should prevent , scripts ratting out.

https://productforums.google.com/forum/#!topic/chrome/byoqskiugu0

alternately, try opening developer tools page, find offending script , remove it. should last until page reloads.

alternately alternately, try viewing source on page. if you're familiar html should able find text in there , copy , paste needed.


Comments

Popular posts from this blog

wordpress - (T_ENDFOREACH) php error -

Export Excel workseet into txt file using vba - (text and numbers with formulas) -

Using django-mptt to get only the categories that have items -