Skip to content

Instantly share code, notes, and snippets.

@kinjouj
Created January 17, 2026 13:29
Show Gist options
  • Select an option

  • Save kinjouj/01411bd75127c87ec532e3decc07392e to your computer and use it in GitHub Desktop.

Select an option

Save kinjouj/01411bd75127c87ec532e3decc07392e to your computer and use it in GitHub Desktop.
document.oncontextmenu = null;
document.addEventListener("contextmenu", (e) => {
document.oncontextmenu = null;
e.stopPropagation();
return true;
}, { capture: true });
{
"name": "chrome-extension-enable-right-click",
"version": "0.0.1",
"manifest_version": 3,
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content_script.js"],
"run_at": "document_start"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment