您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds a little bit of Mon- er I mean adds a confirmation whenever smashing that trash can button.
当前为
// ==UserScript== // @name Fetus Deletus // @version 1.0 // @description Adds a little bit of Mon- er I mean adds a confirmation whenever smashing that trash can button. // @match https://epicmafia.com/* // @namespace https://greasyforks.org/users/146029/ // @author Shwartz99 // @homepage https://epicmafia.com/user/378333 // @icon http://i.imgur.com/P2eQO3K.png // ==/UserScript== //just a shoutout to those who helped me (function() { 'use strict'; $("body").on("click", ".icon-trash", function(){ if(confirm("Are you sure you want to delete this?")){ return true; //deletus } else{ return false; //fetus } }) })();