blob: 8f8194f9e753588325ea4dd252872745de422185 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<body>
<script>
"use strict";
let src = document.location.href.replace("https://", "http://");
let frame = document.createElement("iframe");
frame.setAttribute("id", "frame");
frame.setAttribute("src", src);
document.body.appendChild(frame);
</script>
</body>
</html>
|