commit ea54827582d44bda98035490e4db95df3fb97c5a
parent 28ba2a705affed7d72c1bc3f5d26002fdb5f3f58
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date: Fri, 8 Dec 2017 19:24:32 +1300
Create ghacks-clear-all-up-to-57-[RFP-alternatives].js
Diffstat:
1 file changed, 52 insertions(+), 0 deletions(-)
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
@@ -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"); }
+
+})();