Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Lolu chungechunge lwabekwa kunqolobane. Uyacelwa ubuze umbuzo omusha uma udinga usizo.

How do I disable request to join hello?

  • 1 baphendule
  • 1 inale nkinga
  • 9 views
  • Igcine ukuphendulwa ngu cor-el

more options

My clients are small business to corporate users. They do NOT want people even trying "Hello". To apply fix to everyone is time consuming! What can be done except go to a different browser? How about a "No Thanks" button to opt out!

My clients are small business to corporate users. They do NOT want people even trying "Hello". To apply fix to everyone is time consuming! What can be done except go to a different browser? How about a "No Thanks" button to opt out!

All Replies (1)

more options

You can set the loop.enabled pref to false on the about:config page to disable Hello and remove the toolbar button.

You use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes
//
lockPref("loop.enabled", false);

See: