Skip to content

Commit

Permalink
0514: fix for "AS is out of control" #396
Browse files Browse the repository at this point in the history
  • Loading branch information
Thorin-Oakenpants authored Apr 13, 2018
1 parent d04ff84 commit 7ed434b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -370,8 +370,11 @@ user_pref("extensions.shield-recipe-client.api_url", "");
* Just DELETE the XPI file in your System Add-ons directory
* [1] https://blog.mozilla.org/data/2017/06/05/measuring-search-in-firefox/ ***/
/* 0514: disable Activity Stream (FF54+)
* Activity Stream replaces "New Tab" with one based on metadata and browsing behavior,
* and includes telemetry as well as web content such as snippets and "spotlight"
* Activity Stream is the (new) default homepage/newtab. It is based on metadata and browsing behavior,
* and includes telemetry as well as web content such as snippets, top stories (pocket), top sites, etc.
* - ONE: make sure to set your "home" and "newtab" to about:blank (or use an extension to control them)
* - TWO: DELETE the XPI file in your System Add-ons directory (note this get reinstalled on app updates)
* And/or you can try to control the ever-growing, ever-changing "browser.newtabpage.activity-stream.*" prefs
* [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);
Expand Down

1 comment on commit 7ed434b

@Thorin-Oakenpants
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can edit that a little once I push a PR, to shorten it a tad, remove some words

eg:

Activity Stream is the (new) default homepage/newtab. It is based on metadata and browsing behavior

becomes

Activity Stream is the default homepage/newtab, based on metadata and browsing behavior. It includes telemetry and web content such as...

Please sign in to comment.