qidian download

用来在html5起点站下载小说

נכון ליום 08-04-2014. ראה הגרסה האחרונה.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        qidian download
// @namespace   http://h5.qidian.com
// @include     http://h5.qidian.com/bookreader.html*
// @version     1
// @description  用来在html5起点站下载小说
// @grant       unsafeWindow
// ==/UserScript==
;(function(){
	var $= unsafeWindow.$;
	(function($){
		$.getUrlParam = function(name){
		var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)");
		var r = window.location.search.substr(1).match(reg);
		if (r!=null) return unescape(r[2]); return null;
		}
	})($);
	var id = $.getUrlParam('bookId') || $.getUrlParam('bookid');
	$(".controlbar ul").append("<li><a href='http://download.qidian.com/pda/"+id+".txt'>下载</a></li>");
})();