Meebo Secure

By Tyler Charlesworth Last update Dec 6, 2005 — Installed 1,190 times.
// ==UserScript==
// @name          Meebo Secure
// @author        Tyler Charlesworth
// @namespace     http://www.tyworks.net
// @description   attempts to redirect to the secure login
// @include       http://www*.meebo.com/
// ==/UserScript==

(function(){
	if(location.href.indexOf("https://")!=0) location.href = "https://www.meebo.com";
})();