Skip to content

Commit

Permalink
FF56 deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorin-Oakenpants committed Sep 28, 2017
1 parent 8821674 commit 12f80bd
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -356,11 +356,10 @@ user_pref("extensions.shield-recipe-client.api_url", "");
* [1] https://wiki.mozilla.org/Firefox/Activity_Stream
* [2] https://www.ghacks.net/2016/02/15/firefox-mockups-show-activity-stream-new-tab-page-and-share-updates/ ***/
user_pref("browser.newtabpage.activity-stream.enabled", false);
/* 0515: disable Screenshots (FF54+)
/* 0515: disable Screenshots (FF55+)
* [1] https://github.com/mozilla-services/screenshots
* [2] https://www.ghacks.net/2017/05/28/firefox-screenshots-integrated-in-firefox-nightly/ ***/
// user_pref("extensions.screenshots.system-disabled", true); // (FF54+)
// user_pref("extensions.screenshots.disabled", true); // (FF55+)
// user_pref("extensions.screenshots.disabled", true);
/* 0516: disable Onboarding (FF55+)
* Onboarding is an interactive tour/setup for new installs/profiles and features. Every time
* about:home or about:newtab is opened, the onboarding overlay is injected into that page
Expand All @@ -378,7 +377,6 @@ user_pref("browser.onboarding.enabled", false);
user_pref("extensions.formautofill.addresses.enabled", false);
user_pref("extensions.formautofill.available", "off"); // (FF56+)
user_pref("extensions.formautofill.creditCards.enabled", false); // (FF56+)
user_pref("extensions.formautofill.experimental", false);
user_pref("extensions.formautofill.heuristics.enabled", false);
/* 0518: disable Web Compatibility Reporter (FF56+)
* Web Compatibility Reporter adds a "Report Site Issue" button to send data to Mozilla ***/
Expand Down Expand Up @@ -2030,6 +2028,14 @@ user_pref("browser.tabs.animate", false);
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1352069
user_pref("browser.fullscreen.animate", false);
// * * * /
// FF56
// 0515: disable Screenshots (rollout pref only) (FF54+)
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1386333
// user_pref("extensions.screenshots.system-disabled", true);
// 0517: disable Form Autofill (FF55+) - replaced by extensions.formautofill.available
// [-] https://bugzilla.mozilla.org/show_bug.cgi?id=1385201
user_pref("extensions.formautofill.experimental", false);
// * * * /
// ***/

/* END: internal custom pref to test for syntax errors ***/
Expand Down

0 comments on commit 12f80bd

Please sign in to comment.