DLBOOKS BETTER

make it easier to read books!

Versión del día 05/04/2018. Echa un vistazo a la versión más reciente.

  1. // ==UserScript==
  2. // @name DLBOOKS BETTER
  3. // @namespace https://greasyfork.org/ja/scripts/40309-dlbooks-better
  4. // @version 1.0
  5. // @description make it easier to read books!
  6. // @author badfalcon
  7. // @match http://dlbooks.to/detail/*
  8. // @grant GM_setValue
  9. // @grant GM_getValue
  10. /* load jQuery */
  11. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16.  
  17. var fullscreen = true;
  18. var slideshow = false;
  19. var expandSidemenu = false;
  20.  
  21. /*
  22. function getSettings(){
  23. fullscreen = GM_getValue('fullscreen',true);
  24. GM_setValue('fullscreen',false);
  25. console.log(fullscreen);
  26. }
  27. getSettings();
  28. */
  29.  
  30. var loading = false;
  31.  
  32. var totalPages = parseInt($('#page_num').text().match(/\((.+)\/(.+)\)/i)[2]);
  33.  
  34. var currentPage = 1;
  35. var loadedPages = 0;
  36. var finishedPages = 0;
  37. var preloadNum = 100;
  38. var intervalTime = 100; // millisec
  39. var interval = false;
  40. var timer;
  41. var imageWidth = 0;
  42. var imageHeight = 0;
  43. var imageRatio = 0;
  44. var windowWidth = 0;
  45. var windowHeight = 0;
  46. var windowRatio = 0;
  47.  
  48. timer = false;
  49.  
  50. var debug = false;
  51.  
  52. if(!debug){
  53. preload();
  54. }
  55.  
  56. $('.movie-in-ad').remove();
  57.  
  58. var modalWindow = $('<div>').attr('id','modalWindow')
  59. .css({'position':'fixed',
  60. 'z-index':'100',
  61. 'background-color':'rgba(0,0,0,0.8)',
  62. 'width':'100%',
  63. 'height':'100%',
  64. });
  65.  
  66. var mainBlock = $('<div>').attr('id','mainBlock')
  67. .css({'display':'flex',
  68. 'justify-content': 'center',
  69. 'width':'100%',
  70. 'height':'100%',
  71. });
  72.  
  73. var statusBar = $('<div>').attr('id','statusBar')
  74. .css({'color':'white',
  75. 'position':'fixed',
  76. 'z-index':'100',
  77. 'background-color':'rgba(0,0,0,0.6)',
  78. // 'top':'0',
  79. // 'left':windowWidth/2,
  80. 'padding':'5px',
  81. 'border-radius':'0px 0px 5px 5px',
  82. '-webkit-border-radius':'0px 0px 5px 5px',
  83. '-moz-border-radius':'0px 0px 5px 5px',
  84. 'display':'flex',
  85. 'flex-direction':'column',
  86. });
  87.  
  88. var statusPopup = $('<div>').attr('id','statusPopup')
  89. .css({'color':'white',
  90. });
  91.  
  92. var statusTimeoutID = null;
  93. function showStatus(str,timer){
  94. // statusBar.css('left',(windowWidth-statusPopup.width())/2);
  95. statusPopup.text(str).slideDown("fast",function(){
  96. // statusBar.css('left',(windowWidth-statusBar.width())/2);
  97. if(statusTimeoutID !== null){
  98. clearTimeout(statusTimeoutID);
  99. }
  100. if(timer){
  101. statusTimeoutID = setTimeout(function(){
  102. statusPopup.slideUp('normal',function(){
  103. // statusBar.css('left',(windowWidth-statusBar.width())/2);
  104. });
  105. },2000);
  106. }else{
  107.  
  108. }
  109. });
  110. }
  111.  
  112. function hideOverlay(){
  113. fullscreen = false;
  114. if(slideshow){slideshowButton.click();}
  115. modalWindow.hide();
  116. }
  117.  
  118. function showOverlay(){
  119. fullscreen = true;
  120. modalWindow.show();
  121. }
  122.  
  123. var openButton = $('<button>').text('fullscreen');
  124. openButton.on('click',function(){
  125. showOverlay();
  126. });
  127. $('#one_col > h2:nth-child(1) > span').after(openButton);
  128.  
  129. var sideMenu = $('<div>').css({
  130. "display":"flex",
  131. "flex-direction":"row",
  132. "position":"fixed",
  133. });
  134.  
  135. var sideList = $('<div>').css({
  136. "display":"flex",
  137. "flex-direction":"column",
  138. "width":"80px",
  139. "height":"100%",
  140. "background-color":"rgba(0,0,0,0.5)",
  141. });
  142.  
  143. var toggleButton = $('<button>').text('>');
  144. toggleButton.on('click',function(){
  145. if (sideList.is(':visible')) {
  146. // 表示されている場合の処理
  147. sideList.hide();
  148. $(this).text('>');
  149. expandSidemenu = false;
  150. } else {
  151. // 非表示の場合の処理
  152. sideList.show();
  153. $(this).text('<');
  154. expandSidemenu = true;
  155. }
  156. });
  157.  
  158. var status = $('<div>').attr('class','statusText').html('C('+currentPage+'/'+totalPages+')<br>L('+loadedPages+ '/' + totalPages + ')').css('color','white');
  159. function updateStatus(){
  160. status.html('C('+currentPage+'/'+totalPages+')<br>L('+finishedPages+ '/' + totalPages + ')');
  161. }
  162.  
  163. var reloadButton = $('<button>').text('reload');
  164. reloadButton.on('click',function(){
  165. reloadImages();
  166. });
  167.  
  168. var slideshowTimeoutID = null;
  169. var slideshowButton = $('<button>').text('play');
  170. slideshowButton.on('click',function(){
  171. slideshow = !slideshow;
  172. if(slideshow){
  173. slideshowButton.text('stop');
  174. slideshowTimeoutID = setInterval(function(){
  175. showStatus("playing slideshow (" + currentPage + "/" + totalPages + ")",true);
  176. thumbNext(totalPages);
  177. },3000);
  178. }else{
  179. slideshowButton.text('play');
  180. clearInterval(slideshowTimeoutID);
  181. }
  182. });
  183.  
  184.  
  185. var closeButton = $('<button>').text('×');
  186. closeButton.on('click',function(){
  187. hideOverlay();
  188. });
  189.  
  190. var downloadButton = $('<button>').text('dlZip');
  191. downloadButton.on('click',function(){
  192. $('#download > li:nth-child(2) > a')[0].click();
  193. });
  194.  
  195. var favorited = $('#download > li.bookshelf > a > img').attr('src').includes('set');
  196. var favoriteButton = $('<button>').text('fav');
  197. function updateFavButton(){
  198. if(favorited){
  199. favoriteButton.text('unfav');
  200. }else{
  201. favoriteButton.text('fav');
  202. }
  203. }
  204. favoriteButton.on('click',function(){
  205. $('#download > li.bookshelf > a')[0].click();
  206. favorited = !favorited;
  207. updateFavButton();
  208. });
  209. updateFavButton();
  210.  
  211. var tags = $('<div>').text('△tags').css('color','white');
  212. var showTags = true;
  213. var tagList = $('#detail > ul.tag_list').clone(true).css({
  214. 'color':'white',
  215. 'display':'flex',
  216. 'flex-direction':'column'
  217. });
  218. tags.on('click',function(){
  219. showTags = !showTags;
  220. if(showTags){
  221. tags.text('△tags');
  222. tagList.show();
  223. }else{
  224. tags.text('▽tags');
  225. tagList.hide();
  226. }
  227. });
  228. statusBar.append(status);
  229. statusBar.append(statusPopup);
  230. mainBlock.append(statusBar);
  231. statusPopup.hide();
  232.  
  233. // sideList.append(status);
  234. sideList.append(closeButton);
  235. sideList.append(reloadButton);
  236. sideList.append(slideshowButton);
  237. sideList.append(downloadButton);
  238. sideList.append(favoriteButton);
  239. sideList.append(tags);
  240. sideList.append(tagList);
  241.  
  242. sideMenu.append(sideList).append(toggleButton);
  243.  
  244. sideList.hide();
  245.  
  246. var mainImage = $('<div>')
  247. // .attr({'':'',
  248. // })
  249. .css({'display':'flex',
  250. 'justify-content':'center',
  251. 'align-items':'center',
  252. '':'',
  253. });
  254. mainImage.append($('#thumbnail1').clone(true));
  255. mainBlock.append(mainImage);
  256.  
  257. modalWindow.append(sideMenu).append(mainBlock);
  258.  
  259. $('#container').before(modalWindow);
  260. // $('#container').before($('#thumbnail1').clone(true));
  261.  
  262. // toggleButton.click();
  263.  
  264. function preload(){
  265. if(!loading){
  266. console.log("load start:"+(finishedPages+1) + "~" + (finishedPages + preloadNum));
  267. loading = true;
  268. var url = $('#thumbnail1').attr('src');
  269. var match = url.match(/(http.+\/)(\d{5})\.(jpg|jpeg|gif|png)/i);
  270. var index = parseInt(match[2]);
  271. var finished = 0;
  272. if(interval){
  273. var i = 1;
  274. var id = setInterval(function(){
  275. if(loadedPages+1 > totalPages){
  276. clearInterval(id); //idをclearIntervalで指定している
  277. console.log("preload finished to " + loadedPages + " pages");
  278. }else{
  279. loadedPages++;
  280. }
  281. $('<img>').attr('src',match[1]+("0000"+loadedPages).slice(-5) + "." + match[3]).on('load',function(){
  282. finished++;
  283. finishedPages++;
  284. if(finished == preloadNum || finishedPages == totalPages){
  285. loading = false;
  286. showStatus("load finished",true);
  287. }else{
  288. showStatus('Loading ('+finishedPages+ '/' + totalPages + ')',true);
  289. }
  290. updateStatus();
  291. });
  292. if(i < preloadNum){
  293. i++;
  294. }else{
  295. clearInterval(id); //idをclearIntervalで指定している
  296. console.log("preload finished to " + loadedPages + " pages");
  297. }
  298. }, intervalTime);
  299. }else{
  300. for(var i = 1;i <= preloadNum;i++){
  301. if(loadedPages+1 > totalPages){
  302. break;
  303. }else{
  304. loadedPages++;
  305. }
  306. $('<img>').attr('src',match[1]+("0000"+loadedPages).slice(-5) + "." + match[3]).on('load',function(){
  307. finished++;
  308. finishedPages++;
  309. if(finished == preloadNum|| finishedPages == totalPages){
  310. loading = false;
  311. showStatus("load finished",true); }else{
  312. showStatus('Loading ('+finishedPages+ '/' + totalPages + ')',true);
  313. }
  314. updateStatus();
  315. });
  316. }
  317. }
  318. }
  319.  
  320. }
  321.  
  322. function reloadImages(){
  323. if(!loading){
  324. loading = true;
  325. var currentTotal = loadedPages;
  326. loadedPages = 0;
  327. var finished = 0;
  328. finishedPages = 0;
  329. var url = $('#thumbnail1').attr('src');
  330. var match = url.match(/(http.+\/)(\d{5})\.(jpg|jpeg|gif|png)/i);
  331. var index = parseInt(match[2]);
  332. if(interval){
  333. var i = 1;
  334. var id = setInterval(function(){
  335. if(loadedPages+1 > totalPages){
  336. clearInterval(id); //idをclearIntervalで指定している
  337. }else{
  338. loadedPages++;
  339. }
  340. $('<img>').attr('src',match[1]+("0000"+loadedPages).slice(-5) + "." + match[3]).on('load',function(){
  341. finished++; finishedPages++;
  342. if(finishedPages == currentTotal){
  343. loading = false;
  344. console.log("reload finished:" + "~" + currentTotal);
  345. showStatus("reload finished",true);
  346. }else{
  347. showStatus('Reloading ('+finishedPages+ '/' + currentTotal + ')',true);
  348. }
  349. updateStatus();
  350. });
  351. if(i < currentTotal){
  352. i++;
  353. }else{
  354. clearInterval(id); //idをclearIntervalで指定している
  355. }
  356. }, intervalTime);
  357. }else{
  358. for(var i = 1;i <= currentTotal;i++){
  359. if(loadedPages+1 > totalPages){
  360. break;
  361. }else{
  362. loadedPages++;
  363. }
  364. $('<img>').attr('src',match[1]+("0000"+loadedPages).slice(-5) + "." + match[3]).on('load',function(){
  365. finished++; finishedPages++;
  366. if(finishedPages == currentTotal){
  367. loading = false;
  368. console.log("reload finished:" + "~" + currentTotal);
  369. showStatus("reload finished",true);
  370. }else{
  371. showStatus('Reloading ('+finishedPages+ '/' + currentTotal + ')',true);
  372. }
  373. updateStatus();
  374. });
  375. }
  376. }
  377. }
  378.  
  379. }
  380.  
  381.  
  382. // Your code here...
  383. $(window).on('scroll',function(e) {
  384. e.stopPropagation();
  385. e.preventDefault();
  386. if($(window).scrollLeft() > 0){
  387. $(window).scrollLeft(0);
  388. }
  389.  
  390. });
  391.  
  392. function initSize(){
  393. imageWidth = $('#thumbnail1').width();
  394. imageHeight = $('#thumbnail1').height();
  395. imageRatio = imageWidth/imageHeight;
  396. onResize();
  397. }
  398.  
  399.  
  400.  
  401. function onResize() {
  402. if (timer !== false) {
  403. clearTimeout(timer);
  404. }
  405. timer = setTimeout(function () {
  406. // 何らかの処理
  407. windowWidth = $(window).outerWidth(true);
  408. windowHeight = $(window).outerHeight(true);
  409. modalWindow.css('width','100%').css('height','100%');
  410. windowRatio = windowWidth/windowHeight;
  411. if(windowRatio >= imageRatio){
  412. $('#thumbnail1').css('width',windowHeight*imageRatio);
  413. $('#thumbnail1').css('height',windowHeight);
  414. }else{
  415. $('#thumbnail1').css('width',windowWidth);
  416. $('#thumbnail1').css('height',windowWidth/imageRatio);
  417. }
  418. // statusBar.css('left',(windowWidth-statusBar.width())/2);
  419. }, 200);
  420. }
  421.  
  422. initSize();
  423.  
  424. window.addEventListener('resize',onResize);
  425.  
  426. $(window).on('keydown',function(e){
  427. var keycode = e.keyCode;
  428. switch(keycode){
  429. case 27:
  430. // esc
  431. if(fullscreen){
  432. hideOverlay();
  433. }else{
  434. showOverlay();
  435. }
  436. break;
  437. default:
  438. break;
  439. }
  440. if(fullscreen){
  441. switch(keycode){
  442. case 38:
  443. // ↑
  444. thumbPre(totalPages);
  445. return false;
  446. case 40:
  447. // ↓
  448. thumbNext(totalPages);
  449. return false;
  450. case 116:
  451. // F5
  452. reloadImages();
  453. return false;
  454. default:
  455. break;
  456. }
  457. }
  458. });
  459.  
  460. var mousewheelevent = 'onwheel' in document ? 'wheel' : 'onmousewheel' in document ? 'mousewheel' : 'DOMMouseScroll';
  461. $(document).on(mousewheelevent,function(e){
  462. var num = parseInt($('.wheel').text());
  463. if(fullscreen){
  464. e.preventDefault();
  465. var delta = e.originalEvent.deltaY ? -(e.originalEvent.deltaY) : e.originalEvent.wheelDelta ? e.originalEvent.wheelDelta : -(e.originalEvent.detail);
  466. if (delta < 0){
  467. thumbNext(totalPages);
  468. return false;
  469. } else {
  470. thumbPre(totalPages);
  471. return false;
  472. }
  473. }
  474. });
  475.  
  476. $('#page_num').on('DOMSubtreeModified propertychange',kd);
  477.  
  478. function kd(){
  479. var pageMatch = $('#page_num').text().match(/\((.+)\/(.+)\)/i);
  480. if(pageMatch != null){
  481. if(currentPage != pageMatch[1]){
  482. currentPage = pageMatch[1];
  483. updateStatus();
  484. if(currentPage >= loadedPages-(preloadNum/2) && loadedPages !== totalPages){
  485. preload();
  486. }
  487. }
  488. }
  489. }
  490.  
  491. })();