// ==UserScript== // @name 심야식당 이미지 미리보기 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 심야식당내에서 이미지 미리보기를 항상띄워줌 // @author You // @match https://arca.live/b/smpeople* // @icon https://www.google.com/s2/favicons?sz=64&domain=arca.live // @grant none // @require https://code.jquery.com/jquery-3.6.0.min.js // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; let z=$('.vrow-preview') for (const el of z) {el.parentElement.children[0].children[0].after(el.children[0])} // Your code here... })();