Skip to content

Commit

Permalink
0514: Activity Stream, fixes #396
Browse files Browse the repository at this point in the history
AS is out of control. No master switch in FF60+, and in order to 100% sure nothing is collected locally (or external connections made), there are now some 28 prefs (including those coming in FF61). This is re-DICK-ulous. We're not going to bother tracking all that, let alone the labyrinth of code. All users are advised to just make sure they remove the XPI every time they update FF.
  • Loading branch information
Thorin-Oakenpants authored Apr 21, 2018
1 parent 17d83c1 commit 27f8724
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 @@ -375,8 +375,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 default homepage/newtab, based on metadata and browsing behavior,
* and includes telemetry and 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

4 comments on commit 27f8724

@earthlng
Copy link
Contributor

Choose a reason for hiding this comment

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

maybe add the version? "Activity Stream is the default homepage/newtab in FF60+. It's based on ..."

@Thorin-Oakenpants
Copy link
Contributor Author

@Thorin-Oakenpants Thorin-Oakenpants commented on 27f8724 Apr 21, 2018

Choose a reason for hiding this comment

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

I think that's in 61. Lemme check. BRB

AS has been the default since 57+ (on new installs) - pretty sure that it auto-migrated people as well if they were using the old default page as well (with the tiles etc)

@earthlng
Copy link
Contributor

Choose a reason for hiding this comment

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

and perhaps move the remains of 0360 to this after FF60 is released. browser.newtabpage.enabled is the pref that sets "newtab" to either AS or about:blank.

@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.

d055560

Remains of 0360 will probably get removed? They're still removing the old code. We can keep an eye on it for sure.

When 61 lands we'll have the new Home tab with the two dropdowns (home / newtab) - see the pic here - #396 (comment) - and can probably clean up 0102+0103 etc and link back to those in 0514

We can clean that up then

Please sign in to comment.