DEV Community

Kaziu
Kaziu

Posted on

I wanna make CPU slower than default setting in chrome devtool 😣!

Normally when you need CPU to get slower in chrome, set Performance > CPU

Image description

but slowest setting is 6 times slowdown

Image description

😱 But I do wanna get it slower !!

OK, let's do it

1. Activate Protocol Monitor

Image description

Image description

2. Close devtool and reopen it again

then select Protocol monitor

Image description

3. write code at bottom part

{"command":"Emulation.setCPUThrottlingRate","parameters":{"rate": 10}}
and property of rate is throttle down speed

Image description

just note for myself and other developers

ref.
https://zenn.dev/from_host/articles/2d91bf31807b57
(this article helped me a lot, thank you)

Top comments (0)