// ==UserScript== // @name 巴哈測試 簡黑模式 // @namespace https://forum.gamer.com.tw/B.php?bsn=26742 // @version 0.1 // @description 巴哈測試!! // @author You // @require https://cdn.bootcss.com/jquery/1.12.4/jquery.js // @match https://forum.gamer.com.tw/B.* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; if( $("#BH-menu-path > ul > ul > li.BH-menu-forumA-right.dropList > dl > dd:nth-child(3) > a > div").prop('class') != 'BH-menu__switch-box is-on' ){ console.log('變換簡黑模式!!'); $("#themeSwitch").click(); }else{ console.log('已經是簡黑模式!!'); } // Your code here... })();