How to Disable the Google Chrome ‘V8 Optimizer’ (JavaScript JIT)

The Performance Engine

Modern web browsers are incredibly fast primarily because of how they handle JavaScript. Google Chrome utilizes a highly specialized engine called “V8.” Instead of just reading and interpreting JavaScript code line-by-line as a website loads, the V8 engine uses a Just-In-Time (JIT) compiler. It takes the website’s JavaScript and instantly compiles it into native machine code directly on your processor, allowing complex web applications to run with near-native speed.

While JIT compilation is vital for performance, it is also one of the most historically vulnerable components of any web browser. Security researchers frequently discover ways to exploit the JIT compiler to execute malicious code on a victim’s machine. If you are a security researcher, a journalist in a hostile environment, or if you are browsing extremely high-risk, untrusted websites, you might choose to prioritize absolute security over rendering speed by disabling the JIT compiler entirely.

How to Turn Off the V8 JIT Optimizer

You cannot disable this engine from the standard settings menu; you must use a command-line flag when launching Chrome.

  1. Ensure Google Chrome is completely closed.
  2. Locate your Google Chrome shortcut (on your Desktop or Taskbar).
  3. Right-click the shortcut and select Properties.
  4. Look for the Target field, which contains the path to the Chrome executable (e.g., "C:\Program Files\Google\Chrome\Application\chrome.exe").
  5. Click at the very end of this line, outside the closing quotation mark.
  6. Type a single space, and then add the following flag exactly:
--js-flags="--jitless"
  1. Click Apply and then OK.
  2. Launch Chrome using this specific shortcut.

Chrome will now run in a highly secure, interpreted mode. Be aware that while this severely reduces your vulnerability to zero-day exploits, complex web applications (like video editors, heavy games, or massive interactive maps) will run significantly slower, and some may fail to load entirely.

Get the best tech tips delivered straight to your inbox.

Join thousands of readers mastering Apple, Google, Microsoft, and Linux.