crocoSkipper

croco.siteをスキップ

目前為 2017-03-06 提交的版本,檢視 最新版本

// ==UserScript==
// @name        crocoSkipper
// @namespace   http://crocoskipper/
// @match       *://www.croco.site/*
// @match       *://croco.site/*
// @description croco.siteをスキップ
// @version     1.2
// @grant       none
// ==/UserScript==
(function(){
  var dest_url = location.href.split("?l=")[1];
  if(dest_url.indexOf("http://") == -1){
    dest_url = "http://" + dest_url;
  }
  location.href = dest_url;
})();