1
0
Fork 0
FF_arkenfox_user.js/scratchpad-scripts/troubleshooter.js

216 lines
6.6 KiB
JavaScript
Raw Normal View History

2018-01-09 16:03:46 +01:00
/*** ghacks-user.js troubleshooter.js v1.5.2 ***/
2018-01-15 17:06:22 +01:00
2018-01-09 16:03:46 +01:00
(function() {
2018-01-15 17:06:22 +01:00
if("undefined" === typeof(Services)) {
alert("about:config needs to be the active tab!");
return;
}
function getMyList(arr) {
let aRet = [];
let dummy = 0;
for (let i = 0, len = arr.length; i < len; i++) {
if (Services.prefs.prefHasUserValue(arr[i])) {
dummy = Services.prefs.getPrefType(arr[i]);
switch (dummy) {
case 32: // string (see https://dxr.mozilla.org/mozilla-central/source/modules/libpref/nsIPrefBranch.idl#31)
dummy = Services.prefs.getCharPref(arr[i]);
aRet.push({'name':arr[i],'value': dummy,'type':32});
break;
case 64: // int
dummy = Services.prefs.getIntPref(arr[i]);
aRet.push({'name':arr[i],'value': dummy,'type':64});
break;
case 128: // boolean
dummy = Services.prefs.getBoolPref(arr[i]);
aRet.push({'name':arr[i],'value': dummy,'type':128});
break;
default:
console.log("error detecting pref-type for '"+arr[i]+"' !");
}
}
}
return aRet;
}
2018-01-09 16:03:46 +01:00
function reapply(arr) {
for (let i = 0, len = arr.length; i < len; i++) {
switch (arr[i].type) {
case 32: // string
Services.prefs.setCharPref(arr[i].name, arr[i].value);
break;
case 64: // int
Services.prefs.setIntPref(arr[i].name, arr[i].value);
break;
case 128: // boolean
Services.prefs.setBoolPref(arr[i].name, arr[i].value);
break;
default:
console.log("error re-appyling value for '"+arr[i].name+"' !"); // should never happen
}
}
}
function myreset(arr) {
for (let i = 0, len = arr.length; i < len; i++) {
Services.prefs.clearUserPref(arr[i].name);
}
}
let ops = [
2018-01-16 16:52:24 +01:00
/* known culprits */
'network.cookie.cookieBehavior',
'network.http.referer.XOriginPolicy',
'privacy.firstparty.isolate',
'privacy.resistFingerprinting',
'security.mixed_content.block_display_content',
'svg.disabled',
/* Storage + Cache */
2018-01-09 16:03:46 +01:00
'browser.cache.offline.enable',
2018-01-16 16:52:24 +01:00
'dom.indexedDB.enabled',
'dom.storage.enabled',
2018-01-09 16:03:46 +01:00
'browser.storageManager.enabled',
2018-01-16 16:52:24 +01:00
'dom.storageManager.enabled',
/* Workers, Web + Push Notifications */
2018-01-09 16:03:46 +01:00
'dom.caches.enabled',
'dom.push.connection.enabled',
'dom.push.enabled',
'dom.push.serverURL',
'dom.serviceWorkers.enabled',
'dom.webnotifications.enabled',
'dom.webnotifications.serviceworker.enabled',
2018-01-16 16:52:24 +01:00
/* Fonts */
'browser.display.use_document_fonts',
2018-01-09 16:03:46 +01:00
'font.blacklist.underline_offset',
'gfx.downloadable_fonts.woff2.enabled',
'gfx.font_rendering.graphite.enabled',
'gfx.font_rendering.opentype_svg.enabled',
2018-01-16 16:52:24 +01:00
'layout.css.font-loading-api.enabled',
/* Misc */
'browser.link.open_newwindow.restriction',
'canvas.capturestream.enabled',
'dom.event.clipboardevents.enabled',
'dom.event.contextmenu.enabled',
'dom.IntersectionObserver.enabled',
'dom.popup_allowed_events',
'full-screen-api.enabled',
'geo.wifi.uri',
2018-01-09 16:03:46 +01:00
'intl.accept_languages',
'javascript.options.asmjs',
'javascript.options.wasm',
'permissions.default.shortcuts',
2018-01-16 16:52:24 +01:00
'security.csp.experimentalEnabled',
/* Hardware */
'dom.vr.enabled',
'media.ondevicechange.enabled',
/* Audio + Video */
'dom.webaudio.enabled',
2018-01-09 16:03:46 +01:00
'media.autoplay.enabled',
2018-12-17 09:19:14 +01:00
'media.autoplay.default', // FF63+
2018-01-16 16:52:24 +01:00
/* Forms */
'browser.formfill.enable',
'signon.autofillForms',
'signon.formlessCapture.enabled',
/* HTTPS */
2018-01-09 16:03:46 +01:00
'security.cert_pinning.enforcement_level',
'security.family_safety.mode',
'security.OCSP.require',
'security.pki.sha1_enforcement_level',
2018-01-15 17:06:22 +01:00
'security.ssl.require_safe_negotiation',
2018-01-09 16:03:46 +01:00
'security.ssl.treat_unsafe_negotiation_as_broken',
2018-01-15 17:06:22 +01:00
'security.ssl3.dhe_rsa_aes_128_sha',
'security.ssl3.dhe_rsa_aes_256_sha',
'security.ssl3.ecdhe_ecdsa_aes_128_sha',
'security.ssl3.ecdhe_rsa_aes_128_sha',
'security.ssl3.rsa_aes_128_sha',
'security.ssl3.rsa_aes_256_sha',
'security.ssl3.rsa_des_ede3_sha',
2018-01-09 16:03:46 +01:00
'security.tls.enable_0rtt_data',
'security.tls.version.max',
'security.tls.version.min',
2018-01-16 16:52:24 +01:00
/* Plugins + Flash */
'plugin.default.state',
'plugin.defaultXpi.state',
'plugin.sessionPermissionNow.intervalInMinutes',
'plugin.state.flash',
2018-01-09 16:03:46 +01:00
2018-01-16 16:52:24 +01:00
/* unlikely to cause problems */
'browser.tabs.remote.allowLinkedWebInFileUriProcess',
'dom.popup_maximum',
'layout.css.visited_links_enabled',
'mathml.disabled',
'network.auth.subresource-http-auth-allow',
2018-01-16 16:52:24 +01:00
'network.http.redirection-limit',
'network.protocol-handler.external.ms-windows-store',
'privacy.trackingprotection.enabled',
'security.data_uri.block_toplevel_data_uri_navigations',
2018-01-09 16:03:46 +01:00
'last.one.without.comma'
]
2018-01-15 17:06:22 +01:00
// reset prefs that set the same value as FFs default value
let aTEMP = getMyList(ops);
myreset(aTEMP);
reapply(aTEMP);
2018-01-09 16:03:46 +01:00
2018-01-15 20:19:34 +01:00
const aBACKUP = getMyList(ops);
2018-01-15 17:06:22 +01:00
//console.log(aBACKUP.length, "user-set prefs from our list detected and their values stored.");
2018-01-09 16:03:46 +01:00
2018-01-15 17:06:22 +01:00
let myArr = aBACKUP;
2018-01-16 16:52:24 +01:00
let found = false;
let aDbg = [];
2018-01-09 16:03:46 +01:00
focus();
2018-01-16 16:52:24 +01:00
myreset(aBACKUP); // reset all detected prefs
2018-01-09 16:03:46 +01:00
if (confirm("all detected prefs reset.\n\n!! KEEP THIS PROMPT OPEN AND TEST THE SITE IN ANOTHER TAB !!\n\nIF the problem still exists, this script can't help you - click cancel to re-apply your values and exit.\n\nClick OK if your problem is fixed.")) {
2018-01-16 16:52:24 +01:00
aDbg = myArr;
2018-01-09 16:03:46 +01:00
reapply(aBACKUP);
myreset(myArr.slice(0, parseInt(myArr.length/2)));
while (myArr.length >= 2) {
alert("NOW TEST AGAIN !");
if (confirm("if the problem still exists click OK, otherwise click cancel.")) {
myArr = myArr.slice(parseInt(myArr.length/2));
2018-01-16 16:52:24 +01:00
if (myArr.length == 1) {
alert("The problem is caused by more than 1 pref !\n\nNarrowed it down to "+ aDbg.length.toString() +" prefs, check the console ...");
break;
}
2018-01-09 16:03:46 +01:00
} else {
myArr = myArr.slice(0, parseInt(myArr.length/2));
2018-01-16 16:52:24 +01:00
aDbg = myArr;
if (myArr.length == 1) { found = true; break; }
2018-01-09 16:03:46 +01:00
}
reapply(aBACKUP);
myreset(myArr.slice(0, parseInt(myArr.length/2))); // reset half of the remaining prefs
}
2018-01-15 20:19:34 +01:00
reapply(aBACKUP);
2018-01-16 16:52:24 +01:00
}
else {
2018-01-15 20:19:34 +01:00
reapply(aBACKUP);
return;
2018-01-09 16:03:46 +01:00
}
2018-01-16 16:52:24 +01:00
if (found) {
2018-01-15 20:19:34 +01:00
alert("narrowed it down to:\n\n"+myArr[0].name+"\n");
myreset(myArr); // reset the culprit
2018-01-09 16:03:46 +01:00
}
2018-01-16 16:52:24 +01:00
else {
console.log("the problem is caused by a combination of the following prefs:");
for (let i = 0, len = aDbg.length; i < len; i++) {
console.log(aDbg[i].name);
}
}
2018-01-09 16:03:46 +01:00
})();