atyponrex 投稿系统的基金名称

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         atyponrex 投稿系统的基金名称
// @namespace    http://tampermonkey.net/
// @version      2025-05-03-002
// @description  atyponrex 投稿系统的基金名称要显示全部
// @author       You
// @match        https://ieee.atyponrex.com/submission/submissionBoard/*/verifyOrganizations
// @match        https://wiley.atyponrex.com/submission/submissionBoard/*/verifyOrganizations
// @match        https://*.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...
    
    
    const selector = ".fundersWithGrantsFieldItem-flexField .selectBoxSelectContainer.fundersWithGrantsFieldItem-inputField .selectBoxValueContainer .selectBoxSingleValue, .fundersWithGrantsFieldItem-flexField .fundersWithGrantsFieldItem-inputField div.selectBoxValueContainer div.selectBoxSingleValue";

    setInterval(()=>updateElementStyles,1000)


    function updateElementStyles() {
        document.querySelectorAll(selector).forEach(e => {
            e.style.position = "unset";
        });
    }

    // // 使用 MutationObserver 监听 DOM 变化
    // const observer = new MutationObserver(updateElementStyles);

    // observer.observe(document.body, {
    //     childList: true,
    //     subtree: true
    // });

    // // 初始执行一次
    // updateElementStyles();
})();