20 lines
893 B
JavaScript
20 lines
893 B
JavaScript
# Mozilla User Preferences
|
|
|
|
/* Do not edit this file.
|
|
*
|
|
* If you make changes to this file while the browser is running,
|
|
* the changes will be overwritten when the browser exits.
|
|
*
|
|
* To make a manual change to preferences, you can visit the URL about:config
|
|
* For more information, see http://www.mozilla.org/unix/customizing.html#prefs
|
|
*/
|
|
|
|
user_pref("capability.policy.default.XMLHttpRequest.channel", "allAccess");
|
|
user_pref("capability.policy.default.XMLHttpRequest.open", "allAccess");
|
|
user_pref("capability.policy.default.XMLHttpRequest.responseText", "allAccess");
|
|
user_pref("capability.policy.default.XMLHttpRequest.responseXML", "allAccess");
|
|
user_pref("capability.policy.default.XMLHttpRequest.send", "allAccess");
|
|
user_pref("network.cookie.prefsMigrated", true);
|
|
user_pref("signed.applets.codebase_principal_support", true);
|
|
user_pref("security.warn_entering_secure", false);
|