Livedoor Secure Login

By Sugano Yoshihisa(E) Last update Apr 7, 2008 — Installed 303 times. Daily Installs: 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2
// ==UserScript==
// @name           Livedoor Secure Login
// @namespace      http://www.misao.gr.jp/~koshian/
// @description    Auto transfer https URL on Livedoor login
// @include        http://member.livedoor.com/login/*
// ==/UserScript==

(function() {
  var loc = new String(location);
  var regexp = new RegExp('^http:(.*)$');

  if (regexp.exec(loc))
    {
      var url = 'https:' + RegExp.$1;
      location.href = url;
    }
 })();