Greasy Fork 支持简体中文。

hipda-search

Search enhance for HiPDA

目前為 2021-02-20 提交的版本,檢視 最新版本

// ==UserScript==
// @name         hipda-search
// @namespace    https://www.hi-pda.com/forum/search.php*
// @version      0.1
// @description  Search enhance for HiPDA
// @author       maltoze
// @match        https://www.hi-pda.com/forum/search.php*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    const searchSelectElem = document.querySelector("#wrap > form > p.searchkey > select");
    searchSelectElem.options.add(new Option("全文","fulltext"));
    searchSelectElem.options.add(new Option("标题增强","hello"));
})();