top | item 47134956

(no title)

mmsc | 6 days ago

In addition to completely disabling AI, I found the following setting extremely convinent to disable in about:config. They clutter up my right-click on a link or on text selection.

  browser.translations.select.enable
  dom.text_fragments.enabled
  privacy.query_stripping.strip_on_share.enabled
  devtools.accessibility.enabled
Now if only I could get rid of "Print selection" and "Services" when right-clicking, too (on MacOS)

discuss

order

e40|5 days ago

Why would you disable "dom.text_fragments.enabled"? Why "privacy.query_stripping.strip_on_share.enabled"?

The latter, especially, seems helpful.

mmsc|5 days ago

`dom.text_fragments.enabled` to remove "Copy link to highlight" on right-click. Yes, it can be useful, but I never use it and the very rare occasion of needing to use it when opening a page, I can just search it myself.

`privacy.query_stripping.strip_on_share.enabled` to remove "Copy clean link". I would rather it just did that clean link thing automatically, but I don't actually care about clean links -- it's just annoying having two "copy link" next to each other (especially with one which is greyed out 99% of the time!)

mostlysimilar|5 days ago

It strips query params used for tracking. Has it never bothered you when you click share on Instagram or YouTube and it inserts a unique-to-you "share ID" in the URL? I was burned by this once, now every time I copy a share URL from a social media platform I first paste it into my text editor and remove all of the privacy invasive tracking cruft.

As an aside I think it's only matter of time before this is done without query params and instead each share link is generated just for you.

mmsc|5 days ago

I'm also missing:

  dom.text-recognition.enabled
  browser.search.visualSearch.featureGate
  extensions.formautofill.addresses.enabled
  extensions.formautofill.creditCards.enabled
  widget.macos.native-context-menus
The last one removes the "Services" option when right-clicking an image or highlighted text.

sunaookami|5 days ago

I wish we could also disable "Send via email" when right clicking a picture, I constantly misclick and userChrome.css does not work for the context menu on macOS since it's natively rendered...

windowliker|5 days ago

> userChrome.css does not work for the context menu on macOS

Putting:

#context-sendimage { display:none!important; }

in that file works for me.

silverwind|5 days ago

print.enabled should disable all the print stuff.

mmsc|5 days ago

Thanks! I didn't know that.

I think that's a good workaround, but I'll have to re-enable it when I actually need to print something.