您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
友盟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) })();