Disable Chrome Translation Bar on My Website

How to disable Google translate from HTML in Chrome

New Answer

Add translate="no" to your <html> tag, like so:

<html translate="no">

MDN Reference


Old Answer

(This should still work but is less desirable because it is Google-specific, and there are other translation services out there.)

Add this tag in between <head> and </head>:

<meta name="google" content="notranslate">

Documentation reference

Disable Chrome translation bar on my website

Insert this to the head section of your web page.

<meta name="google" content="notranslate">

Source: Meta tag that Google understand - Search Console Help

Can I disable the google translate bar via userchrome?

As Mr Lister stated in the comments, it's gotta be in the userContent.css (in the same chrome folder, though).

Adding

body > .skiptranslate {
display: none;
}

there, as posted in Hiding Google Translate bar, hid the translate bar without any (immediately noticeable) issues.

disable browser bar when page is loaded

Well, if a browser company decide to 'freak-out' or what-ever do something beside showing html content, you can't do anything but try another browser. Like, if googleChrome add publicity to their 'software' .. you'd need to 'hack' the software in order to remove components from it.

Some softwares offer 'web' extensions such has microsoft IE
<meta http-equiv="imagetoolbar" content="no"> etc etc..

Search the web for 'browser specific meta', it might help.

carry on



Related Topics



Leave a reply



Submit