Advertisement
ravego

Untitled

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