// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... document.querySelectorAll(".fundersWithGrantsFieldItem-flexField .selectBoxSelectContainer.fundersWithGrantsFieldItem-inputField .selectBoxValueContainer .selectBoxSingleValue").forEach(e=>{ e.style.position="unset" }) })();