Cookie Lifetime Extender

By JoeSimmons Last update Mar 14, 2009 — Installed 1,452 times. Daily Installs: 5, 1, 8, 2, 4, 7, 6, 2, 2, 3, 2, 5, 1, 6, 3, 3, 8, 8, 1, 5, 5, 1, 2, 1, 1, 6, 5, 4, 2, 3, 5, 2
// ==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;';