Google-chrome – Disable “Print…” in Context menu of selected text in Chrome

context menugoogle-chromeprintinguser interface

When I select some text on page, displayed in the Chrome web-browser, and click with my right button, context menu opens. It has three options: "Copy", "Search %YOUR.SEARCH.ENGINE.NAME for '%SELECTED.TEXT%" and "Print…"; then is has separator and "Inspect Element".

My usual usage of popup menu on selected text is to use "Search %% for '%%'", but sometimes I miss the right menu item and clicks on "Print…". Then print preview opens (or OS print dialog if --disable-print-preview command-line option was added. I have no printer, and I need not to print one or two words, I just want

Is it possible to disable "Print…" item in the Google's version of Chrome?

If it is not possible, how can I find the code to display "Print…" in Chromium?

Best Answer

Printing can be disabled completely by setting:

"printing": {
   "enabled": false
},

to the Preferences file. Internally this sets kPrintingEnabled.

Related Question