您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
심야식당내에서 이미지 미리보기를 항상띄워줌
当前为
// ==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 // ==/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... })();