Fakku.net image list

Lists all images in a chapter/volume

  1. // ==UserScript==
  2. // @name Fakku.net image list
  3. // @description Lists all images in a chapter/volume
  4. // @name:zh-TW Fakku.net 漫畫列表
  5. // @description:zh-TW 列出章節內所有圖片
  6. // @version 1.0.0
  7. // @include /^https\:\/\/.*?.fakku.net\/manga\/.*/
  8. // @author willy_sunny
  9. // @license GPL version 2 or any later version; http://www.gnu.org/licenses/gpl-2.0.txt
  10. // @namespace https://greasyfork.org/users/9968
  11. // ==/UserScript==
  12. //
  13. var fl="";
  14. for(var i=0;i<unsafeWindow.params.thumbs.length;i++){
  15. fl+='<img src="'+unsafeWindow.params.thumbs[i].replace('.thumb.','.').replace('thumbs','images')+'"><br />'
  16. }
  17. document.write(fl); // outputs the list*/