allo- / ffprofile

A tool to create firefox profiles with personalized defaults.
GNU Affero General Public License v3.0
772 stars 56 forks source link

Disable google analytics on the addons page #87

Closed allo- closed 6 years ago

allo- commented 7 years ago

https://github.com/mozilla/addons/issues/3145 https://bugzilla.mozilla.org/show_bug.cgi?id=1302552 https://github.com/mozilla/addons/issues/3156

Find a way to reliably disable Google Analytics one the about:addons page. Seems like old (restartless) extensions work there, but new webextensions do not. So using uBlock for this is no option as they will need to upgrade to webextensions, when mozilla removes the APIs for more powerful extensions.

allo- commented 7 years ago

extensions.webservice.discoverURL may help.

Thorin-Oakenpants commented 6 years ago

kill the url and hide the panel - make users visit AMO directly

user_pref("extensions.getAddons.showPane", false); // hidden pref
user_pref("extensions.webservice.discoverURL", "");
allo- commented 6 years ago

Implemented an hour ago in https://github.com/allo-/firefox-profilemaker/commit/83f30880cef509043da1f48d26d97de0e3e85d7e ;-)