您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
pubg.op.gg战绩优化,方便用户查看
// ==UserScript== // @name pubg.op.gg战绩优化 // @namespace http://tampermonkey.net/ // @version 0.1 // @description pubg.op.gg战绩优化,方便用户查看 // @author You // @match https://pubg.op.gg/user/* // @icon https://www.google.com/s2/favicons?domain=op.gg // @grant none // ==/UserScript== (function() { 'use strict'; let list = document.getElementsByClassName('matches-item__reload-time') const tip = document.createElement('div') tip.setAttribute('style', 'position:absolute;top:10vh;left:0;width:100%;height:10vh;background-color:white;display:flex;justify-content:center;opacity:0.5;z-index:999;align-items:center;font-size:2rem;') console.log(list) let last = '' const init = () =>{ for(let i =0;i<list.length;i+=1){ let text = list[i].getAttribute('data-original-title') const [date, time] = text.split(' ') const [year,excludeYear] = date.split('年') const [month, excludeMonth] = excludeYear.split('月') const [day] = excludeMonth.split('日') list[i].innerText = `${year}.${month}.${day} ${time}` if(i === 0){ last = list[i].innerText } } tip.innerText = `最后一把${last}` } init() setInterval(()=>{ init() },1500) document.body.appendChild(tip) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址