Skip to content

Instantly share code, notes, and snippets.

@evenfrost
Created March 6, 2015 13:23
Show Gist options
  • Save evenfrost/55fa68206482c38c8f9c to your computer and use it in GitHub Desktop.
Save evenfrost/55fa68206482c38c8f9c to your computer and use it in GitHub Desktop.
Clears all cokies from bandcamp site.
/**
* Clears all cokies from bandcamp site.
*/
(function () {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i].trim();
var eqPos = cookie.indexOf('=');
var name = eqPos > -1 ? cookie.substr(0, eqPos) : cookie;
document.cookie = name + '=;expires=Thu, 01 Jan 1970 00:00:00 GMT;domain=.bandcamp.com;path=/';
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment