Imeem Login Killer

By badsegue Last update Apr 18, 2009 — Installed 381 times. Daily Installs: 0, 0, 2, 1, 3, 0, 1, 0, 1, 2, 0, 2, 2, 2, 1, 1, 0, 1, 0, 0, 4, 1, 3, 3, 1, 0, 1, 0, 6, 0, 6, 0
// ==UserScript==
        // @name          Imeem Login Killer 
        // @namespace     http://badsegue.org/
        // @description	  Use Imeem without logging in, by automatically clearing the login popup
        // @include       http://*.imeem.com/*
        // ==/UserScript==
        //
        // Imeem Login Killer from http://badsegue.org
        //
        // This is a simple script to make that hides the Imeem login popup div, so you don't have to login 
        //
        
        window.addEventListener('load', function() {
        
        var divs = document.getElementsByTagName("div");
        var d;
        for (i=0; i<divs.length;i++) {
          d=divs[i];
          if (d.id.match('FloatingLogin'))  d.style.display = 'none';
        }
        
        }, true);