Greasy Fork

Greasy Fork is available in English.

pixiv图片自动下载

自动下载cat上打开的图片

当前为 2021-05-30 提交的版本,查看 最新版本

// ==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.href
    a.href = url;
    a.download = url;
    a.click();
    window.URL.revokeObjectURL(url);
})();