From 45f1dfa9127480bb9c1679b264767e93eed86fd9 Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Tue, 15 May 2018 17:42:00 +0000 Subject: [PATCH] Delete ghacks-clear-57-[changes-only].js --- .../ghacks-clear-57-[changes-only].js | 61 ------------------- 1 file changed, 61 deletions(-) delete mode 100644 scratchpad-scripts/ghacks-clear-57-[changes-only].js diff --git a/scratchpad-scripts/ghacks-clear-57-[changes-only].js b/scratchpad-scripts/ghacks-clear-57-[changes-only].js deleted file mode 100644 index 47b80d9..0000000 --- a/scratchpad-scripts/ghacks-clear-57-[changes-only].js +++ /dev/null @@ -1,61 +0,0 @@ -/*** - - For instructions see: - https://github.com/ghacksuserjs/ghacks-user.js/wiki/3.1-Resetting-Inactive-Prefs-[Scripts] - -***/ - -(function() { - let ops = [ - /* --- 57-alpha --- */ - /* commented out */ - 'browser.storageManager.enabled', - 'dom.storageManager.enabled', - /* removed from the user.js */ - 'browser.search.geoip.timeout', - 'geo.wifi.xhr.timeout', - 'gfx.layerscope.enabled', - 'media.webspeech.recognition.enable', - /* moved to RFP ALTERNATIVES */ - 'dom.w3c_touch_events.enabled', - 'media.video_stats.enabled', - /* moved to DEPRECATED/REMOVED */ - 'browser.bookmarks.showRecentlyBookmarked', - 'browser.casting.enabled', - 'devtools.webide.autoinstallFxdtAdapters', - 'media.eme.chromium-api.enabled', - 'social.directories', - 'social.enabled', - 'social.remote-install.enabled', - 'social.share.activationPanelEnabled', - 'social.shareDirectory', - 'social.toast-notifications.enabled', - 'social.whitelist', - /* reset parrot: check your open about:config after running the script */ - '_user.js.parrot' - ] - - 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"); } - -})();