// ==UserScript== // @name 500px 图片下载 // @namespace https://www.yffjglcms.com/ // @version 0.3.20201222 // @description try to take over the world! // @author yffjglcms // @match https://*.500px.com/photo/* // @match https://500px.com/photo/* // @grant none // @require https://cdn.staticfile.org/jquery/3.4.1/jquery.min.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code h ere... // 图片选择器 const imgSelector = ".photo-show__img" // 如果存在则执行 function ifExist(selector, func){ if($(selector)[0]==null) { setTimeout( function(){ifExist(selector, func);}, 300); } else { func() } } // 添加导出按钮 function addBtn() { var url = $(imgSelector).attr("src") $(imgSelector).before(`
`) $("body").on("click", "#openInNewTab", ()=>{ window.open( $(imgSelector).attr("src")) }) } // 执行 ifExist(img, addBtn) })();