您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Lists all images in a chapter/volume
当前为
// ==UserScript== // @name Fakku.net image list // @description Lists all images in a chapter/volume // @name:zh-TW Fakku.net 漫畫列表 // @description:zh-TW 列出章節內所有圖片 // @version 1.0.0 // @include /^https\:\/\/.*?.fakku.net\/manga\/.*/ // @author willy_sunny // @license GPL version 2 or any later version; http://www.gnu.org/licenses/gpl-2.0.txt // @namespace https://greasyfork.org/users/9968 // ==/UserScript== // window.whenloaded = function(){ var fl=""; for(var i=0;i<window.params.thumbs.length;i++){ fl+='<img src="'+window.params.thumbs[i].replace('.thumb.','.').replace('thumbs','images')+'"><br />' } document.write(fl); // outputs the list }