您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
每頁筆數自動選擇 50
当前为
// ==UserScript== // @name 樂詞網自動選擇顯示 50 筆 // @namespace https://github.com/zica87 // @version 0.1.1 // @description 每頁筆數自動選擇 50 // @author zica // @match https://terms.naer.edu.tw/search/* // @grant none // @license GPL-2.0 // ==/UserScript== (function() { 'use strict'; const a = document.getElementsByClassName('form-select-sm')[0]; // 0 = 10 筆(即預設值) // 1 = 20 筆 // 2 = 50 筆 // 3 = 100 筆 const selectIndex = 2; a.selectedIndex = selectIndex; a.children[selectIndex].dispatchEvent(new Event('change', {bubbles: true})); })();