Advertisement
ravego

Untitled

May 4th, 2024 (edited)
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. document.addEventListener("keydown", function (e) {
  2. if (e.key == "q" && e.ctrlKey) {
  3. var t = window.open("", "_blank", "width=500,height=300");
  4. var e = t.document.createElement("iframe");
  5. (e.src = "//inglan2.github.io/uRun/popup.html"),
  6. (e.style.cssText = "width:100%; height:100%; border:none;"),
  7. t.document.body.appendChild(e),
  8. t.document.title = "byfron.app",
  9. t.addEventListener("message", function (e) {
  10. e.data.toString().startsWith("execute:") && (eval(e.data.toString().replace("execute:", "")), t.close());
  11. });
  12. }
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement