Greasy Fork is available in English.
自动下载cat上打开的图片
ของเมื่อวันที่
// ==UserScript==// @name pixiv图片自动下载// @namespace http://tampermonkey.net/// @version 0.1// @description 自动下载cat上打开的图片// @author Pikaqian// @match https://pixiv.cat/*// @icon https://pixiv.cat/favicon.ico// @grant none// ==/UserScript==(function() {'use strict';// Your code here...var a = document.createElement('a');var url=window.location.hrefa.href = url;a.download = url;a.click();window.URL.revokeObjectURL(url);})();