Skip to content

WebOpener is a bookmarklet that opens web pages via about:blank cloaking.

License

Notifications You must be signed in to change notification settings

DoodoouserLab/WebOpener

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 

Repository files navigation

WebOpener

What is WebOpener?

WebOpener is a bookmarklet that opens web pages via about:blank cloaking.

How to Use

To change the site, change the string for the variable "url." You can either go to the file with the code or copy it from here. Run the code in a html compiler and click on the button that shows up. It will take you to a webpage with a url "about:blank" that will hide the site's actual url. The default url is a proxy. For a demo, please visit https://sites.google.com/view/webopener-1-0-demo/home

<!-- Created by DoodoouserLab -->

<html>

<head>
</head>

<body>
 <button onclick="openSite()">Biology Resources</button>
 <script>
   function openSite() {
var win = window.open()
var url = "https://im-in-the-thick-of-it-everybody-knows.dynorex.com"
var iframe = win.document.createElement('iframe')
iframe.style.width = "100%";
iframe.style.height = "100%";
iframe.style.border = "none";
iframe.src = url
win.document.body.appendChild(iframe)
}
 </script>
</body>

</html>

About

WebOpener is a bookmarklet that opens web pages via about:blank cloaking.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages