Greasy Fork

exif파일명자동체크

단세줄

目前为 2022-10-10 提交的版本。查看 最新版本

// ==UserScript==
// @name         exif파일명자동체크
// @namespace    https://arca.live/b/aiart/write
// @version      0.2
// @description  단세줄
// @author       You
// @license MIT
// @match        https://arca.live/b/aiart/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=arca.live
// @grant        none
// @require    http://code.jquery.com/jquery-latest.js
// ==/UserScript==

(function() {
    'use strict';
        $(document).on('click', '.images-multi-upload', function() {
            $("#saveExif").prop("checked", true);
            $("#saveFilename").prop("checked", true);
        });
    // Your code here...
})();