// ==UserScript== // @name exif파일명자동체크 // @namespace https://arca.live/b/aiart/write // @version 0.1 // @description 코드 단 세 줄 // @author You // @license MIT // @match https://arca.live/b/aiart/write // @icon https://www.google.com/s2/favicons?sz=64&domain=arca.live // @grant none // @require http://code.jquery.com/jquery-latest.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; $(document).on('click', '.images-multi-upload', function() { $("#saveExif").prop("checked", true); $("#saveFilename").prop("checked", true); }); // Your code here... })();