Greasy Fork is available in English.

Shows FPS(frames per second) / MS(milliseconds/ping) / MB (memory usage in MB/megabytes)

Shows FPS (frames per seconds) (a measure of how many still images, or frames, are displayed in a single second of video or animation for instance how much frames per second shows on a website) / MS (Ping / MilliSeconds / how many milliseconds it takes to get information from you to the "server")/ Memory usage in MB (megabytes)

Tác giả
UnknownQwertyz
Cài đặt hàng ngày
0
Số lần cài đặt
13
Đánh giá
0 0 0
Phiên bản
999.0
Đã tạo
31-01-2024
Đã cập nhật
01-02-2024
Giấy phép
MIT
Áp dụng cho
Tất cả trang web

Shows FPS (frames per seconds) (a measure of how many still images, or frames, are displayed in a single second of video or animation for instance how much frames per second shows on a website) / MS (Ping / MilliSeconds / how many milliseconds it takes to get information from you to the "server")/ Memory usage in MB (megabytes)

NOTE: this is just a simple script used to track how your computer reacts to certain (or all) websites. to see your FPS/MS/MB just click the box in the top right and it will change from FPS > MS > MB and then goes back to FPS.

ANOTHER NOTE: this is actually my first useful script ive ever written LOL :sob:

UPDATE: 'Useless Things Series ??' has added draggability to the FPS Counter to make it more convenient. he switched up entire code while still keeping the document body intact so big thanks to Useless Things Series (check out his scripts on GreasyFork !)

UPDATE 2: added an address of link (in code) that can now let users use this script with a click of a button :D (im talking about bookmarks)

BOOKMARK ADDRESS:

javascript:(function() {
var script = document.createElement('script');
script.textContent = `
(function () {
'use strict';

var script = document.createElement('script');
script.onload = function () {
var stats = new Stats();
stats.dom.style.position = 'fixed';
stats.dom.style.top = '0';
stats.dom.style.left = '0';
document.body.appendChild(stats.dom);

var isDragging = false;
var offset = { x: 0, y: 0 };

stats.dom.addEventListener('mousedown', function (e) {
isDragging = true;
offset.x = e.clientX - stats.dom.offsetLeft;
offset.y = e.clientY - stats.dom.offsetTop;
});

document.addEventListener('mousemove', function (e) {
if (isDragging) {
stats.dom.style.left = e.clientX - offset.x + 'px';
stats.dom.style.top = e.clientY - offset.y + 'px';
}
});

document.addEventListener('mouseup', function () {
isDragging = false;
});

stats.dom.style.zIndex = '9999';

requestAnimationFrame(function loop() {
stats.update();
requestAnimationFrame(loop);
});
};

script.src = '//mrdoob.github.io/stats.js/build/stats.min.js';
document.head.appendChild(script);
})();
`;
document.head.appendChild(script);
})();