您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto load all images from Good Smile Company http://www.goodsmile.info/product/*
// ==UserScript== // @name Better Good Smile // @description Auto load all images from Good Smile Company http://www.goodsmile.info/product/* // @namespace 'vinsai' // @include http://www.goodsmile.info/product/* // @version 1.0 // ==/UserScript== var autoLoad = false; //Add a command to the menu in case someone wants to manually check for an update. GM_registerMenuCommand("Better Good Smile->Toggle Auto Load", SetAutoLoad); //Initiate the download of the new script version. function SetAutoLoad() { var auto = GM_getValue(autoLoad); if (auto == true) { GM_setValue(autoLoad, false); } else { GM_setValue(autoLoad, true); } } (function() { function addImages() { var p = document.querySelectorAll('.product-images-row>.group'); for (var i = 0; i < p.length; ++i) { append = '<br><a target="_blank" href="' + p.item(i).href + '"><img style="max-width:950px;height:auto;" src="' + p.item(i).href + '" title="' + p.item(i).title + '"><a>'; target.insertAdjacentHTML('beforeEnd', append); } } var target = document.getElementById('product-default-image'); var auto = GM_getValue(autoLoad); if (auto == true) { addImages(); } else { var append = '<br><br><span id="showAllImages" style="border:1px solid rgb(190,202,215);background:#FCFCFC;padding:2px;cursor:pointer;width:100px;">> 画像を一覧で見る</span><br>' target.insertAdjacentHTML('beforeEnd', append); document.getElementById('showAllImages').onclick = function() { addImages(); }; } })(); //=============================================================================== // - Weekly Auto-Update Check - //=============================================================================== // CheckForUpdate() will verify if the time has come to look if an update is available. // CheckVersion() will verify if this script version is the latest available. //=============================================================================== var script_title = "Better Good Smile"; var source_location = "http://userscripts.org/scripts/source/137129.user.js"; var current_version = "1.0"; var latest_version = " "; var gm_updateparam = "BetterGoodSmile_lastupdatecheck"; var lastupdatecheck = GM_getValue(gm_updateparam, "never"); // a google document is used to store the latest version number (If the version in that file does not match the current_version variable, an update will be triggered) var version_holder = "http://dl.dropbox.com/u/4978696/userscripts/BetterGoodSmile.txt"; //Add a command to the menu in case someone wants to manually check for an update. GM_registerMenuCommand("Better Good Smile->Manually Update", CheckVersion); //Initiate the download of the new script version. function GetNewVersion() { var today = new Date(); GM_setValue(gm_updateparam, String(today)); window.location = source_location; } //Verify if it's time to update function CheckForUpdate() { var today = new Date(); var one_day = 24 * 60 * 60 * 1000; //One day in milliseconds if(lastupdatecheck != "never") { today = today.getTime(); //Get today's date var lastupdatecheck = new Date(lastupdatecheck).getTime(); var interval = (today - lastupdatecheck) / one_day; //Find out how much days have passed //If a week has passed since the last update check, check if a new version is available if(interval >= 7) CheckVersion(); } else CheckVersion(); } //Make sure we don't have the latest version function CheckVersion() { GM_xmlhttpRequest({ method: 'GET', url: version_holder, headers: {'Content-type':'application/x-www-form-urlencoded'}, onload: function(responseDetails) { var line = String(responseDetails.responseText.match(/version=[0-9].[0-9]?[0-9].[0-9]?[0-9]/)); if(line != null) { var strSplit = new Array(); strSplit = line.split('='); latest_version = strSplit[1]; if(current_version != latest_version && latest_version != "undefined") { if(confirm("A more recent version of " + script_title + " (" + latest_version + ") has been found.\r\nWould you like to get it now?")) GetNewVersion(); else AskForReminder(); } else if(current_version == latest_version) alert("You have the latest version of " + script_title + "."); } else { alert("Could not locate the version holder file.\r\nThis should be reported to the script author.\r\nThank you!"); SkipWeeklyUpdateCheck(); } } }); } //Ask the user to be reminded in 24 hours or only next week. function AskForReminder() { if(confirm("Would you like to be reminded in 24 hours ?\r\n(Cancel to be reminded next week only)")) { var today = new Date(); today = today.getTime(); var sixdays_ms = 6 * 24 * 60 * 60 * 1000; var sda_ms = today - sixdays_ms; var sixdaysago = new Date(sda_ms) //Since we check for updates after 7 days, just make it seem like the last check was 6 days ago. GM_setValue(gm_updateparam, String(sixdaysago)); } else SkipWeeklyUpdateCheck(); } //Set the next update check in seven days function SkipWeeklyUpdateCheck() { var today = new Date(); //As if we've just updated the script, the next check will only be next week. GM_setValue(gm_updateparam, String(today)); } //=============================================================================== // - Weekly Auto-Update Check - //===============================================================================
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址