Google Chrome 143 Download

Google has released Chrome 146.0.7680.72 for Windows, macOS, and Linux, rolling out from March 10, 2026. This update fixes 29 vulnerabilities patched, including one critical flaw (CVE-2026-3913) in the WebML component that could allow remote code execution via manipulated HTML pages. The Chrome 146 release also introduces scroll-triggered animations, a scoped custom element registry, and the Sanitizer API for XSS-free web apps, along with WebGPU improvements and DevTools enhancements. If you already have Chrome installed, it’s recommended that you update it as soon as possible to protect your browser against recently patched security issues.

What’s new in Google Chrome 146

Chrome 146 introduces several game-changing features that address long-standing developer pain points and enhance user security. Most importantly, this release addresses 29 security vulnerabilities, including critical remote code execution risks. Let’s dive into the highlights.

  • Security hardening with 29 fixes: 29 vulnerabilities patched, including one critical flaw (CVE-2026-3913) in the WebML component that could allow remote code execution via manipulated HTML pages.
  • New scroll‑triggered CSS animations: CSS scroll-triggered animations let developers tie animations to scroll position without heavy JavaScript, improving performance and enabling smoother, more responsive effects.
  • WebGPU performance and compatibility upgrades: WebGPU gains texture_and_sampler_let, a compatibility mode for older GPUs (via OpenGL and Direct3D11), and TRANSIENT_ATTACHMENT to optimize GPU memory usage for demanding graphics workloads.
  • Stronger developer tooling in DevTools: Adopted style sheets are now visible/editable in the Elements panel, console command edits are preserved in history, and new Lighthouse audits plus accessibility/LCP debugging skills improve site quality checks.
  • Improved security & code hygiene APIs: The Sanitizer API helps prevent XSS when handling untrusted HTML, while scoped custom element registries avoid naming conflicts across libraries and components.
  • Refined user interface and tab management: A new Tab Groups button, toolbar customization panel, movable Tab Search button, desktop toasts, and a Material 3 visual refresh make Chrome more organized and visually consistent.
  • AI mode and autofill enhancements: AI mode now uses Google Drive files as context and handles multi‑tab queries better, while Chrome can auto‑fill loyalty cards, flight details, and reservation codes using data from Google Wallet.

Scroll-Triggered Animations – A Game-Changer for Web Design

One of the most exciting features in Chrome 146 is scroll-triggered animations. This lets you create animations that respond to scroll position without relying on JavaScript.

Traditionally, creating scroll-triggered effects like fade-ins, parallax effects, and progress indicators required developers to write custom JavaScript. They had to manually detect when an element entered the viewport and then trigger animations—a process that often blocked the main thread and hurt performance.

Chrome 146 changes this by introducing CSS scroll timelines. Now you can declare scroll-triggered interactions directly in CSS, letting the browser offload animation handling to worker threads. This approach is faster, cleaner, and more performant.

Key takeaway: If you maintain a website with animations, this feature can significantly reduce your JavaScript bundle size and improve scrolling performance.

Scoped Custom Element Registries – Preventing Library Conflicts

Modern web apps often pull in multiple JavaScript libraries, and each library might want to define custom elements with the same tag names. This created a problem: only one definition could exist per tag name across the entire page.

Chrome 146 introduces scoped custom element registries, allowing multiple definitions for the same tag name within different parts of a page. This prevents naming conflicts when using libraries from multiple sources.

Web developers can now confidently use third-party libraries without worrying about custom element name collisions. Each library can encapsulate its custom elements within its own scope, making modular web development safer and more scalable.

The Sanitizer API – Building XSS-Free Applications

Security is a constant concern for web developers. Cross-Site Scripting (XSS) attacks remain a serious vulnerability, and the Sanitizer API is designed to make your applications safer.

The Sanitizer API provides a straightforward way to remove potentially malicious content from arbitrary HTML. Instead of using innerHTML, which can execute scripts, you can use setHTML() to safely insert user-supplied content.

Example of the Sanitizer API in action:

const untrustedString = 'abc <script>alert("XSS")</script> def';
const targetElement = document.getElementById('target');
targetElement.setHTML(untrustedString);
console.log(target.innerHTML); // Output: abc def

The script tag is automatically removed, protecting your application from XSS attacks. This feature is also available in Firefox, showing a commitment to cross-browser security standards.

WebGPU Enhancements – Graphics for Legacy Hardware

WebGPU is Chrome’s modern graphics API, but it required cutting-edge hardware with explicit graphics APIs like Vulkan or DirectX 12. Chrome 146 introduces WebGPU Compatibility mode, expanding support to older devices.

What changed:

  • Compatibility mode adds an opt-in subset of the WebGPU API that works with older graphics APIs like OpenGL and Direct3D 11
  • Developers simply specify featureLevel: 'compatibility' when requesting an adapter
  • A new TRANSIENT_ATTACHMENT texture usage flag lets GPU operations stay in tile memory, reducing VRAM traffic

Impact: Game developers, 3D visualization platforms, and graphics-heavy applications can now reach users with older hardware, significantly expanding their potential audience.

User Experience & UI Enhancements

Chrome 146 brings a significant visual and functional refresh to the browser interface with several quality-of-life improvements:

Toolbar and Tab Management:

  • New Tab Groups Button: A dedicated button has been added to the bookmarks bar, making it easier to create and manage tab groups at a glance
  • Toolbar Customization: Users now have more control over their toolbar with a new side panel that lets them pin, unpin, and rearrange icons to suit their workflow
  • Tab Search Button Repositioning: The tab search button can now be moved from the left to the right side of the tab bar, giving users flexibility in UI layout
  • Desktop Toasts: Small visual notification chips now appear to confirm user actions, such as adding a page to the reading list or saving content

Material 3 Design Refresh: Chrome 146 adopts Google’s Material 3 design language, bringing rounded corners, updated colors, and a more modern aesthetic throughout the interface. This includes refined tab styling, improved contrast, and a cohesive design system across all UI elements.

AI Mode Enhancements

Chrome’s AI capabilities are expanding significantly in version 146:

Google Drive Integration in AI Mode: Google Drive files now become available as context in AI Mode. Users can share their Google Drive documents directly with the AI assistant to ask questions, summarize content, or compare information across files.

Improved Multi-Tab Context: The multi-tab context feature allows users to share the contents of one or more of their open tabs, helping them ask questions, compare, summarize, and find information more efficiently. This is particularly useful for research, planning trips, or comparing products across multiple websites.

Practical Use Cases:

  • Planning a trip by consolidating flight, hotel, and activity information from multiple tabs
  • Researching and comparing product reviews across different retailer websites
  • Analyzing documents and spreadsheets simultaneously with web content
  • Getting context-aware answers based on what you’re currently viewing

. Google Wallet Auto-Fill Integration

One of the most practical additions to Chrome 146 is the deep integration with Google Wallet for form auto-fill:

Loyalty Card Auto-Fill: Chrome can now remember your loyalty card information for faster submission. When you encounter a form requiring a loyalty card number, Chrome automatically suggests the correct card from your Google Wallet, eliminating the need to find your physical card or remember the number.

Travel Details Auto-Fill: Chrome recognizes the form then pulls in the necessary flight information — like the confirmation number and dates — from your booking saved in Google Wallet. This is invaluable when renting cars, booking hotels, or filling out travel insurance forms.

What You Can Auto-Fill:

  • Loyalty card numbers (retailers, airlines, hotel chains)
  • Flight confirmation numbers and dates
  • Reservation codes
  • Vehicle information (license plate, VIN)
  • Insurance policy details

How to Use It: To access these smart features, enable “Enhanced Autofill” in your Chrome Settings under Autofill and Passwords. You’ll need to be signed into your Google Account and have your travel/loyalty information saved in Google Wallet.

29 Critical Security Vulnerabilities Fixed

This is the headline that shouldn’t be overlooked: Chrome 146 resolves 29 security vulnerabilities. This is a substantial security update that addresses memory corruption issues and remote code execution flaws.

Most Critical Vulnerability: The most severe issue fixed in this release is CVE-2026-3913, a critical heap buffer overflow vulnerability located in Chrome’s WebML component. Security researcher Tobias Wienand discovered this flaw and earned a $33,000 bug bounty.

Additional High-Severity Fixes:

  • An integer overflow in WebML (CVE-2026-3914) earned the discoverer $43,000 as a bug bounty reward
  • Another heap-based buffer overflow in the module (CVE-2026-3915) was also awarded $43,000
  • A vulnerability allowing carefully crafted web pages to trigger read access outside of intended memory boundaries in the “Web Speech” component earned a $36,000 reward (CVE-2026-3916)

Medium and Low-Severity Issues: Chrome developers also resolved 17 medium and low-severity vulnerabilities across several components, including the V8 JavaScript engine, Chrome PDF viewer, developer tools, and navigation systems. These issues include insufficient policy enforcement, side-channel information leaks, incorrect security user interface implementations, and memory access errors.

Additional Security and Performance Improvements

Post-Quantum Cryptography: Chrome 146 makes post-quantum secure ciphers mandatory for TLS connections on enterprise managed devices, strengthening protection against future threats.

Cache Encryption: Chrome Enterprise Premium users now get enterprise cache encryption on desktop platforms, protecting locally-stored browser data from malware.

File Upload Security: Data Loss Prevention (DLP) scanning now covers large files (up to 2GB) and encrypted files that were previously skipped.

Local Network Access: New enterprise policies provide granular control over how websites interact with internal network resources.

Why These Updates Matter

For Developers: Chrome 146 addresses two fundamental challenges:

  1. Performance: CSS scroll-triggered animations eliminate the need for JavaScript-heavy animation libraries, improving Core Web Vitals and user experience
  2. Safety: The Sanitizer API makes it easier to build secure applications without complex sanitization libraries
  3. Compatibility: WebGPU Compatibility mode opens graphics capabilities to a broader audience

For Users: These updates translate to:

  • Faster, smoother websites with better scrolling performance
  • More secure browsing, especially on sites that handle user-generated content
  • Superior autofill experience with loyalty cards and travel details automatically filled from Google Wallet
  • Better productivity with improved AI assistance through Google Drive and multi-tab context sharing
  • Enhanced UI with a modern Material 3 design and customizable toolbar
  • Simplified form-filling that saves time during online shopping and travel booking

For Enterprises:

Enhanced security features, from post-quantum cryptography to improved DLP scanning, address evolving threat landscapes. The advanced autofill features also improve employee productivity by reducing time spent on repetitive data entry.

If you’re a web developer:

  1. Explore scroll-triggered animations and refactor animation-heavy pages to use CSS scroll timelines
  2. Audit your forms and content areas that accept user input—implement the Sanitizer API where appropriate
  3. If you’re building graphics applications, test WebGPU Compatibility mode on older devices
  4. Update your developer workflow to use the improved DevTools

If you maintain a website:

  1. Check your analytics to understand your audience’s browser version distribution
  2. Test your site in Chrome 146 to ensure compatibility
  3. Consider refactoring scroll animations if you have JavaScript-based implementations
  4. Implement the Sanitizer API if you display user-generated content
  5. Optimize your forms to work with enhanced autofill features (especially travel and commerce sites)

If you’re a Chrome user:

  1. Enable Enhanced Autofill: Go to Settings > Autofill and Passwords > Enhanced Autofill and turn it on for faster form-filling with Google Wallet integration
  2. Organize Your Toolbar: Use the new side panel to customize your toolbar icons to match your workflow
  3. Try AI Mode: Experiment with AI Mode in the address bar and new tab page for more intelligent search and browsing
  4. Experiment with Tab Groups: Use the new Tab Groups button on the bookmarks bar to organize and quickly switch between different browsing contexts
  5. Save Your Loyalty Cards: Add your loyalty cards to Google Wallet so Chrome can autofill them during online shopping
  6. Use Multi-Tab Context: When researching or planning, use Gemini’s multi-tab context feature to analyze information across multiple websites simultaneously

If you’re an enterprise IT administrator:

  1. Review the new local network access policies and update settings as needed
  2. Enable cache encryption on Chrome Enterprise Premium to protect sensitive data
  3. Update your DLP scanning rules to account for large file support
  4. Evaluate enhanced autofill policies—consider enabling them for employee productivity while managing security policies around which services can access form data

Download Chrome 146 offline installer

Use the following links to download Chrome 146.0.7680.72 for Windows. These are full offline installers and do not require an active internet connection during installation.

Chrome 146 Offline Installer (Windows)

Note: The offline installer links do not include automatic updates. You will need to download and install newer versions manually when they are released.

Chrome 146 Web Installer (Online setup)

If you prefer the standard online setup:

This is a small bootstrap installer that downloads the latest version of Chrome from Google during setup and enables automatic updates.

Google Chrome MSI Installers for Windows (for IT admins)

For system administrators and enterprise environments:

  • Google Chrome 146 MSI installer (32‑bit) – [Download]
  • Google Chrome 146 MSI installer (64‑bit) – [Download]

These MSI packages are suitable for deployment via Group Policy or other centralized management tools, and they support automatic updates.

Google Chrome 146 Portable

If you want to carry Chrome on a USB drive without installing it on the system:

This edition can be run from any folder or external drive, and it won’t modify system‑level settings.

How to update Chrome to version 146

If you already have Google Chrome installed, you can upgrade to version 146 using the built‑in updater:

  1. Open Google Chrome on your computer.
  2. Click the three vertical dots (menu) at the top‑right corner.
  3. Go to Help > About Google Chrome.
  4. Chrome will automatically check for updates and start downloading Chrome 146 if it’s available.
  5. Once the download is complete, click Relaunch to finish the update.

Alternatively, type chrome://settings/help in the address bar and press Enter to open the same page directly.

Google chrome 146 update

On Android and iOS, Chrome is updated through the Google Play Store and Apple App Store. Make sure automatic updates are enabled, or open the respective store app and update Chrome manually.

Conclusion

The latest Chrome 146 update is primarily a security and platform upgrade, mainly focused on fixing vulnerabilities and improving the foundations of modern web apps rather than introducing flashy end‑user features. It’s strongly recommended to install this update as soon as possible on Windows 11 and Windows 10 to protect your system and stay compatible with upcoming web technologies.

The next stable version, Chrome 147, is scheduled for release on April 07, 2026.

Disclaimer: This article covers the main features of Chrome 146. For a complete list of changes, visit the official Chrome Release Notes.

Where to Find More Information:

Also read: