javascript - (userscript/tampermonkey) not allowing website to detect my mouse movment/clicks -
- senario = there website , put mouse inside website shows online.
- what want = want bypass want able put mouse in website , copy , paste text while still seen offline.
- what did = using tampermonkey chrome userscript:
document.addeventlistener("mousemove", function(e){ e.stopimmediatepropagation(); }, true);
- 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
Post a Comment