Right-click stopping to work normally in Chrome is a frustrating experience, especially because the symptom can mean three entirely different things. The context menu might not appear at all. It might appear but be missing options. It might flash and disappear. Or it might work on most pages but not specific ones.
Each of those symptoms has a different cause and a different fix. This guide walks through all of them systematically — from the most common (site-level JavaScript blocking) to the less common (extension conflicts and Chrome settings).
Diagnosing the Problem First
Before applying a fix, spend thirty seconds figuring out which type of problem you have.
Test 1: Open a blank Chrome tab (chrome://newtab) and right-click. Does the standard context menu appear? If yes, the problem is site-specific. If no, it's browser-level.
Test 2: Open an Incognito window (Ctrl+Shift+N) and navigate to the page with the broken right-click. If right-click works in Incognito, an extension is causing the issue (extensions are disabled in Incognito by default).
These two tests tell you whether you're dealing with a site block, an extension conflict, or a Chrome-level problem — and that determines which fix to apply.
Fix 1 — Site-Level Right-Click Block (Most Common)
If right-click works on the blank tab and in Incognito but not on a specific site, that site is blocking it.
Using a browser extension
Install Enable Copy Everywhere from the Chrome Web Store. The extension removes the JavaScript contextmenu event block that the site is applying, and right-click works immediately. This fix is automatic and applies to every site that uses the same blocking method.
Using the DevTools console
For a one-time fix without installing anything:
- Press
F12to open DevTools. - Go to Console.
- Run:
document.addEventListener('contextmenu', function(e) {
e.stopImmediatePropagation();
}, true);
Right-click works until you refresh. This is the same principle as enabling right click through the JavaScript console — the capturing listener intercepts the block before it fires.
Fix 2 — Extension Conflict
If right-click works in Incognito but not in a regular window, an extension is the culprit.
Identifying the problem extension
- Go to
chrome://extensions. - Disable all extensions (click the toggle on each to turn off).
- Try right-click on the problem page — if it works, one of the disabled extensions was causing it.
- Re-enable extensions one at a time, testing right-click after each, until you find the one causing the issue.
Common culprits: ad blockers that block certain context menu items, extensions that add custom right-click menus, or older Manifest V2 extensions that haven't been updated for Chrome compatibility.
Fix 3 — Chrome Settings and Flags
Occasionally a Chrome flag or setting affects right-click behavior, especially after Chrome updates.
Check Chrome flags
Navigate to chrome://flags and search for "context menu." Look for any flag that might be set to an experimental state. Reset any modified flags to default.
Reset Chrome settings
If right-click is consistently broken across all sites and Incognito:
- Go to Chrome Settings.
- Scroll to the bottom and click Reset and clean up (or Advanced > Reset settings).
- Click Restore settings to their original defaults.
- Confirm.
This resets Chrome's settings to factory defaults, removing extension-based modifications, flag overrides, and setting customizations. It does not delete bookmarks, saved passwords, or browsing history.
Fix 4 — Site-Specific Custom Right-Click Menus
Some sites don't block right-click — they replace Chrome's default context menu with their own custom menu. Google Docs, for example, shows a Docs-specific context menu instead of Chrome's.
This isn't a bug — it's intentional. The native Chrome context menu is still accessible in these cases via a secondary method:
- Hold the menu key for slightly longer before releasing (some sites detect a long press differently from a quick right-click).
- In some cases, right-clicking on a non-interactive area (the margin outside the main content) shows the native Chrome menu.
- Use the Chrome menu icon (⋮) in the top-right corner — "More tools" includes options to open with DevTools or view source.
Fix 5 — Hardware and OS Considerations
Less common, but worth ruling out:
Touchpad two-finger click: Some laptop touchpad settings configure two-finger tap as right-click. If this setting has changed, right-click may not work. Check your OS touchpad settings.
Mouse driver issue: If right-click stopped working across all applications (not just Chrome), the problem is hardware-level — check your mouse settings in the OS control panel.
Remote desktop or virtual machines: Right-click behavior is sometimes mapped differently in remote sessions. Check the remote client settings.
Maintaining Right-Click Across Browsing Sessions
If you regularly visit sites that block right-click, the best long-term solution is keeping Enable Copy Everywhere active and making sure it's set to run on all sites. The extension's toggle lets you disable it for specific sites if you encounter a conflict.
For comprehensive coverage of how Enable Copy Everywhere compares to other extension approaches — including Enable Copy and paste-specific tools — that comparison breaks down which extension type is appropriate for which scenario.
If you're a researcher or heavy web user who needs consistent access to right-click and copy across restricted sources, building a complete tool stack is worth the twenty-minute investment. The researcher's tool guide covers how to combine right-click restoration with note-taking tools for a complete research workflow.
When Right-Click Is Intentionally Removed
A few legitimate scenarios where right-click being absent or modified is correct behavior:
- Kiosk mode / public browser terminals — Chrome Kiosk mode disables right-click entirely as part of limiting browser access.
- Enterprise-managed Chrome — IT policy may restrict right-click menus on managed devices.
- Canvas apps — Graphics editors and drawing tools inside the browser may use right-click for their own tool menus.
- Accessibility overlays — Some sites add overlay tools that modify right-click behavior.
For kiosk or enterprise cases, the extension-based fix won't work because extensions may also be restricted by policy. The DevTools console approach (if DevTools access is allowed) or simply navigating to a different browser profile may help.
Frequently Asked Questions
Why is my right-click not working in Chrome? The cause is either a website's JavaScript blocking the contextmenu event, an extension conflict, or a Chrome setting/flag issue. Testing in Incognito mode identifies whether it's a browser-level or site-level problem.
How do I reset Chrome's right-click menu to default? Chrome Settings > Reset and clean up > Restore settings to original defaults. This removes extension modifications and resets Chrome flags.
Can a Chrome extension break right-click? Yes. Disable extensions one at a time in a normal window while testing right-click to identify the conflicting extension.
Does clearing cache fix right-click issues? Sometimes, if a site's scripts are cached in a broken state. Clear cached images and files in Chrome Settings > Privacy and security > Clear browsing data.
Does right-click behave differently on different OS? Chrome's right-click behavior is consistent across operating systems. Right-click issues in Chrome are always Chrome or site-level, not OS-level.