// ==UserScript== // @name 500px 图片下载 // @namespace https://www.yffjglcms.com/ // @version 0.4.1.20210314 // @description 提供 500px 图片保存功能 // @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" const corsApi = "https://cors.yffjglcms.workers.dev/?url=" // 如果存在则执行 function ifExist(selector, func){ if($(selector)[0]==null) { setTimeout( function(){ifExist(selector, func);}, 5000); } else { func() } } // 添加导出按钮 function addBtn() { // 下载按钮,导出按钮 $(imgSelector).before(`