Skip to content

Instantly share code, notes, and snippets.

@chamlis
Created February 22, 2025 17:45
Show Gist options
  • Save chamlis/38d1dbcf012336b43ab928ec1772b8fe to your computer and use it in GitHub Desktop.
Save chamlis/38d1dbcf012336b43ab928ec1772b8fe to your computer and use it in GitHub Desktop.
(function(){
let text = document.createElement("textarea");
text.value = "# Netscape HTTP Cookie File\n" + document.cookie.split("; ").map(c => c.split("=")).map(c => [document.domain, "FALSE", "/", "TRUE", "0", c[0], c[1]].join("\t")).join("\n") + "\n";
text.style.position = "absolute";
text.style.zIndex = "9999999";
document.body.prepend(text);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment