返回首頁 

Greasy Fork is available in English.

巴哈姆特 不要摺疊文章

自動點擊展開文章按紐 不要摺疊文章


安装此脚本?
// ==UserScript==// @name        巴哈姆特 不要摺疊文章// @namespace   https://greasyfork.org/scripts/441770// @version     1.0// @description 自動點擊展開文章按紐 不要摺疊文章// @author      fmnijk// @match       https://forum.gamer.com.tw/*// @icon        https://www.google.com/s2/favicons?domain=forum.gamer.com.tw// @grant       none// @license     MIT// ==/UserScript==(window.onload = function() {'use strict'/* $ and $$ */const $ = document.querySelector.bind(document);const $$ = document.querySelectorAll.bind(document);$(".c-disable > a").click();})()