Home > Enterprise >  Anti History Techniques Javascript
Anti History Techniques Javascript

Time:12-16

Ok, i would like to be able to open a website, still use it for as long as i want and not have it show up in my history at all, i have tried location.replace, but it still seems to show up in my history, i have used a pop-up then an redirect to open a pop-up and redirect the page but i want the page to never show up in history, with the pop-up it shows up the first time, please help, Thanks, Dot. /* i need this to ask question... */ const arr = ["1","2","3"]

CodePudding user response:

There isn't anything you can do in Javascript but there are settings you can use to clear your history on shutdown. In Firefox go to about:preferences#privacy then scroll down until you see "history." then uncheck "always remember history." There is no built-in way on Chrome but there are exstentions. Most of them look shady so I will not be providing links to any here.

CodePudding user response:

Please Try:

if (window.location !== window.parent.location) {} else { const Hax = window.open( "", "", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,top=0,left=0,width=100000,height=100000" ); try { Hax.focus(); Hax.document.body.innerHTML = '<style>body{padding:0;margin:0;}iframe{width:100vw;height:100vh;border:0;</style><iframe src="https://qm844.csb.app"></iframe>'; Hax.document.title = "Unblocked Games"; } catch (e) { } finally { window.location = "https://classroom.google.com/h"; } } 

Thanks for tring guys...

  • Related