Greasy Fork

Greasy Fork is available in English.

起点小说阅读页面跳转wwwploy旧版

try to take over the world!

目前为 2015-11-19 提交的版本,查看 最新版本

// ==UserScript==
// @name         起点小说阅读页面跳转wwwploy旧版
// @namespace    http://tampermonkey.net/
// @version 22    0.1
// @description  try to take over the world!
// @author       ufa31415
// @match        http://*.qidian.com/*
// @grant        none
// ==/UserScript==
/* jshint -W097 */
'use strict';

// Your code here...
var l=location.toString();
var q="";
if(l.indexOf("http://read.")>=0){
q=l.split("http://read.")[1].split("&")[0];
}
if(q!="")
{
  location.href="http://wwwploy."+q;
}