Cookie Lifetime Extender

By JoeSimmons Last update Mar 14, 2009 — Installed 1,156 times. Daily Installs: 3, 7, 5, 4, 5, 5, 3, 1, 5, 4, 8, 4, 5, 7, 5, 8, 1, 2, 3, 3, 3, 0, 2, 1, 3, 6, 2, 1, 3, 2, 5, 5
// ==UserScript==
// @name           Cookie Lifetime Extender
// @namespace      http://userscripts.org/users/23652
// @description    Extends cookies lifetimes
// @include        http://*
// @include        https://*
// @copyright      JoeSimmons & Greyg00
// ==/UserScript==

var cookies = document.cookie.split(";");
for(var x in cookies)
document.cookie = cookies[x] + ';expires=Thu, 01-Jan-2050 12:34:58 GMT;';