您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Zeigt Vorschaubilder in den Anime- und Mangalisten an
当前为
// ==UserScript== // @name Proxer PicPreview // @namespace https://greasyfork.org/de/users/83349-deimos // @version 0.1 // @description Zeigt Vorschaubilder in den Anime- und Mangalisten an // @author Deimos // @run-at document-start // @include http://proxer.me/* // @include https://proxer.me/* // @include http://www.proxer.me/* // @include https://www.proxer.me/* // @require https://greasyfork.org/scripts/12981-proxer-userscript-anker/code/Proxer-Userscript-Anker.js?version=108560 // @grant GM_setValue // @grant GM_getValue // @grant unsafeWindow // ==/UserScript== var pictureHeight = 100; document.addEventListener('DOMContentLoaded', function(event) { function changefunction(change) //Ist das Script aktiviert? { if(GM_getValue("proxPics",0) == 1 ) //aktiviert { if(window.location.pathname.split('/')[3] == "anime" || window.location.search === "?s=anime" || window.location.pathname.split('/')[3] == "manga" || window.location.search === "?s=manga") showPics(1); } else //deaktiviert { if(window.location.pathname.split('/')[3] == "anime" || window.location.search === "?s=anime" || window.location.pathname.split('/')[3] == "manga" || window.location.search === "?s=manga") showPics(2); } } //addAnkerMember(id, modulname, modus, changefunction, memoryName, memoryDefault, zusatz); addAnkerMember("proxPics_Anker","Proxer PicPreview",3,changefunction,"proxPics",1); }); function showPics(type) { var tables = document.getElementsByTagName("table"); for(i = 0; i<tables.length;i++) { var tr = tables[i].rows; for(a = 2; a<tr.length;a++) { if(type==1) { var number = tr[a].children[1].children[0].href; number = number.substring(number.indexOf("info")+5); number = number.substring(0,number.indexOf("#top")); tr[a].children[0].children[0].height = pictureHeight; tr[a].children[0].children[0].src = "https://cdn.proxer.me/cover/"+number+".jpg"; } else { tr[a].children[0].children[0].height = 20; tr[a].children[0].children[0].src = "/images/status/abgeschlossen.png"; } } } }