樂詞網自動選擇顯示 50 筆

每頁筆數自動選擇 50

目前为 2022-11-24 提交的版本。查看 最新版本

// ==UserScript==
// @name         樂詞網自動選擇顯示 50 筆
// @namespace    https://github.com/zica87
// @version      0.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];
    // No.2 == 50
    a.selectedIndex = 2;
    a.children[2].dispatchEvent(new Event('change', {bubbles: true}));
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址