FPS Indicator

Inject FPS indicator into current page.

// ==UserScript==
// @name         FPS Indicator
// @version      1.3
// @description  Inject FPS indicator into current page.
// @author       hustcc
// @match        *://**/*
// @noframes
// @run-at       document-end
// @namespace https://atool.vip
// ==/UserScript==

(function() {
    'use strict';

    const script = document.createElement('script');
    script.src = 'https://unpkg.alipay.com/page-fps/dist/entry.min.js';

    document.body.appendChild(script);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址