Greasy Fork

Greasy Fork is available in English.

atyponrex 投稿系统的基金名称

atyponrex 投稿系统的基金名称要显示全部

当前为 2025-04-07 提交的版本,查看 最新版本

// ==UserScript==
// @name         atyponrex 投稿系统的基金名称
// @namespace    http://tampermonkey.net/
// @version      2025-04-07-001
// @description  atyponrex 投稿系统的基金名称要显示全部
// @author       You
// @match        https://ieee.atyponrex.com/submission/submissionBoard/*/verifyOrganizations
// @icon         https://www.google.com/s2/favicons?sz=64&domain=atyponrex.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.querySelectorAll(".fundersWithGrantsFieldItem-flexField .selectBoxSelectContainer.fundersWithGrantsFieldItem-inputField .selectBoxValueContainer .selectBoxSingleValue").forEach(e=>{
         e.style.position="unset"
    })
})();