网页加载速度测试

测试网页加载速度

目前为 2023-07-14 提交的版本。查看 最新版本

// ==UserScript==
// @name         网页加载速度测试
// @author       ChatGPT
// @version      2.0
// @description 测试网页加载速度
// @match        *://*/*
// @run-at      document-start
// @grant        none
// @namespace https://greasyfork.org/users/452911
// ==/UserScript==

(function() {
  const startTime = performance.now();
  
  window.addEventListener('load', () => {
    const endTime = performance.now();
    const timeElapsed = endTime - startTime;
    
    alert(`网页加载总计耗时 ${timeElapsed.toFixed(2)} 毫秒`);
  });
})();