Skip to content

Instantly share code, notes, and snippets.

@liangzr
Last active April 21, 2018 02:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liangzr/aa2bba3e1678ab14bcb6647b67b46d6c to your computer and use it in GitHub Desktop.
Save liangzr/aa2bba3e1678ab14bcb6647b67b46d6c to your computer and use it in GitHub Desktop.
[duplicate cookies] duplicate cookies from a site to another #web
function copyCookies(cookies) {
cookies.split(';').forEach(c => document.cookie = c);
console.log('cookies copied!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment