Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

How do I disable request to join hello?

  • 1 Antwort
  • 1 hat dieses Problem
  • 9 Aufrufe
  • Letzte Antwort von 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!

Alle Antworten (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: