Exporting cookies from a browser¶
Edge¶
- Open the developer tools (F12)
- Go to the
Applicationtab ->Cookies - Select rows you want to export,
Ctrl+Cto copy - Paste the cookies into a file
- Paste this header:
Name Value Domain Path Expires Max-Age Size HttpOnly Secure SameSite Partition Key Site Cross Site Priority - And save
- Optionally, to convert the cookies to the Netscape format, use a converting script.
Download all photos from rajce.cz¶
$("#photoList img").each(function () {var a = $(this).closest("a"); if (a.length){$(document.body).append("<img src='" + a.attr("href") + "' \/>");}});$("body>*:not(img)").remove();