diff --git a/scratchpad-scripts/ghacks-clear-all-up-to-57-[RFP-alternatives].js b/scratchpad-scripts/ghacks-clear-all-up-to-57-[RFP-alternatives].js new file mode 100644 index 0000000..c4f6b70 --- /dev/null +++ b/scratchpad-scripts/ghacks-clear-all-up-to-57-[RFP-alternatives].js @@ -0,0 +1,52 @@ +/*** + + This will reset the preferences that are under section 4600 in the ghacks user.js + up to and including release 57-alpha. These are the prefs that are no longer + necessary, or they conlfict with, privacy.resistFingerprinting if you have that enabled. + + For instructions see: + https://github.com/ghacksuserjs/ghacks-user.js/wiki/1.6-Bulk-Pref-Resetting-[Scratchpad] + +***/ + +(function() { + let ops = [ + '_user.js.parrot', + /* */ + 'dom.maxHardwareConcurrency', + 'dom.enable_resource_timing', + 'dom.enable_performance', + 'device.sensors.enabled', + 'browser.zoom.siteSpecific', + 'dom.gamepad.enabled', + 'dom.netinfo.enabled', + 'media.webspeech.synth.enabled', + 'geo.enabled', + 'media.video_stats.enabled', + 'dom.w3c_touch_events.enabled' + ] + + if("undefined" === typeof(Services)) { + alert("about:config needs to be the active tab!"); + return; + } + + let c = 0; + for (let i = 0, len = ops.length; i < len; i++) { + if (Services.prefs.prefHasUserValue(ops[i])) { + Services.prefs.clearUserPref(ops[i]); + if (!Services.prefs.prefHasUserValue(ops[i])) { + console.log("reset", ops[i]); + c++; + } else { console.log("failed to reset", ops[i]); } + } + } + + focus(); + + let d = (c==1) ? " pref" : " prefs"; + if (c > 0) { + alert("successfully reset " + c + d + "\n\nfor details check the Browser Console (Ctrl+Shift+J)"); + } else { alert("nothing to reset"); } + +})();