有没有办法在Greasemonkey(userscript)中获取有关笔记本电脑的信息?我正在寻找像我的MacBook型号,CPU,内存,正常运行时间,视频卡,显示分辨率等信息。
答案 0 :(得分:1)
你可以得到一些这些信息。我已经列出了它们并添加了一个示例输出
GPU: https://gist.github.com/cvan/042b2448fcecefafbb6a91469484cdf8
AMD Radeon Pro 560 OpenGL Engine
cpu核心数量: navigator.hardwareConcurrency
docs
8
屏幕分辨率:
window.screen.width * window.devicePixelRatio
window.screen.height * window.devicePixelRatio
记忆/计时:window.performance.memory
或window.performance
docs
MemoryInfo {
totalJSHeapSize: 19300000,
usedJSHeapSize: 16100000,
jsHeapSizeLimit: 2190000000
}
设备: navigator.userAgent
打印出一些设备信息
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/65.0.3325.181 Safari/537.36*