Skip to content

Commit

Permalink
Create api.html
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
DaBiggestBozo authored Feb 27, 2024
1 parent 7fe0385 commit 9f48f85
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions api.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="utf-8" />

<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" />

<meta http-equiv="Referrer-Policy" content="no-referrer" />

<meta name="referrer" content="no-referrer" />

<meta name="viewport" content="width=device-width,initial-scale=1" />

<link rel="icon" type="image/x-icon" href="https://www.google.com/favicon.ico" />

<link rel="stylesheet" type="text/css" href="data:text/css;base64,Ym9keSwgZW1iZWQsIGlmcmFtZSB7Cglwb3NpdGlvbjogYWJzb2x1dGU7CglkaXNwbGF5OiBibG9jazsKCXdpZHRoOiAxMDAlOwoJaGVpZ2h0OiAxMDAlOwoJbWFyZ2luOiAwcHg7CglwYWRkaW5nOiAwcHg7Cglib3JkZXI6IG5vbmU7CglvdmVyZmxvdzogaGlkZGVuOwp9Cg==" />

<title>Exporting</title>

</head>

<body>

<div>Click here to continue</div>

<script type="text/javascript">"use strict";

(() => {

document.onclick = () => {

const win = window.open(void 0, "_blank", "");

if (win == null) {

document.body.innerHTML = "Error: Popup windows are blocked by your browser. Please allow popups and click here to retry.";

return;

}

win.focus();



const doc = win.document;

doc.documentElement.replaceWith(document.documentElement);

doc.body.innerHTML = "<embed type=\"text/plain\" width=\"1024\" height=\"768\" src=\"https://dndbeyond.com/\" />";

doc.title = "DnD Beyond";

};

})();

</script>

</body>

</html>

0 comments on commit 9f48f85

Please sign in to comment.