您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
有檢舉時跳出提醒,點確定進入後台。
// ==UserScript== // @name 巴哈姆特檢舉提示 // @namespace Bee10301 // @version 1.3 // @description 有檢舉時跳出提醒,點確定進入後台。 // @author Bee10301 // @match https://forum.gamer.com.tw/B.php?* // @homepage https://home.gamer.com.tw/home.php?owner=bee10301 // ==/UserScript== (function() { 'use strict'; window.onload=function(){ if(document.body.outerHTML.match(/檢舉待處理/g).length>3){ Dialogify.confirm('有檢舉,進入後台?',{ ok: function(){ window.open('gemadmin/accuse_B_2k14.php?bsn='+window.location.href.match(/bsn=(\d*)/)[1],'',''); } }); } } })();