Greasy Fork is available in English.

友盟APP名称显示完整名称

友盟APP名称显示完整名称,而不是只展示缩略名称

// ==UserScript==
// @name         友盟APP名称显示完整名称
// @namespace    https://www.qicodetech.com/
// @version      0.0.1
// @description  友盟APP名称显示完整名称,而不是只展示缩略名称
// @author       AbelHu
// @match        https://mobile.umeng.com/platform/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.setTimeout(function() {
        for (let item of document.getElementsByClassName("ant-select-selection")){
            item.style.cssText="max-width:5000px;"
        }
    }, 2 * 1000)
})();