Greasy Fork

Greasy Fork is available in English.

友盟转化率显示完整名称

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

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

(function() {
    'use strict';
    window.setInterval(function() {
        for (let item of document.getElementsByClassName("ant-select")){
            item.style.width="400px"
        }
    }, 2 * 1000)
})();