Open
Description
Firesheep should remove the "www." from the domain name when stores a cookie.
For example, tuenti.com needs the change.
In ff-sidebar.js
Search:
deleteDomainCookies(cookieUri);
Add later:
var domain = cookieUri.host.toString();
if (domain.substr(0,4)=='www.') domain = domain.substr(4);
Change
';domain=.' + cookieUri.host;
By
';domain=.' + domain;