Basically title…I’m wondering specifically if my chrome/userChrome.css is increasing my chances of getting fingerprinted/tracked/etc. I can’t find answers on DDG or on Arkenfox’s GitHub, so I’m probably good, but what do you think?

  • Oliver Lowe@lemmy.sdf.org
    link
    fedilink
    arrow-up
    21
    arrow-down
    1
    ·
    9 months ago

    Probably not; userChrome.css just modifies the local user interface of Firefox, right? I don’t think any of this information is ever transmitted to servers, nor is it available from Javascript. Custom user styles however could probably be used for fingerprinting.

    Related interesting article from Mozilla: Privacy and the :visited selector

    • 9point6@lemmy.world
      link
      fedilink
      arrow-up
      7
      arrow-down
      2
      ·
      9 months ago

      Unfortunately, you can read the CSS state of an element from JS, so it can easily be used as part of a sufficiently advanced fingerprinting algorithm.

      • azdle@news.idlestate.org
        link
        fedilink
        English
        arrow-up
        3
        ·
        9 months ago

        OP is asking about userChrome.css, which applies to the style of the browser window itself, not webpage contents. Websites can’t view the markup for the browser window itself (which, fun fact is (mostly?) just HTML too), otherwise this would all be moot and they could just look at your list of tabs or your username in the menus.

  • jet@hackertalks.com
    cake
    link
    fedilink
    English
    arrow-up
    9
    arrow-down
    1
    ·
    edit-2
    9 months ago

    Test out your fingerprint resistance by going to fingerprint.com there are commercial service, but they will track you on their webpage. And tell you if they can match you to a previous ID. So just visit an incognito mode. Restart your browser, visit again an incognito mode. See if you get matched

    The only browser that works for me against fingerprint.com is the tor browser, and mullvad browser.

    Firefox+arkenfox still gets fingerprinted for me

  • jsdz@lemmy.ml
    link
    fedilink
    arrow-up
    7
    ·
    edit-2
    9 months ago

    It will have no practically significant effect. Websites do not have access to browser chrome css properties. The worst it might do is change the dimensions of the viewport in a way that makes your browser fingerprint slightly more unusual, i.e. the same thing that would happen if you set the UI to “compact” mode.

  • stifle867@programming.dev
    link
    fedilink
    arrow-up
    5
    arrow-down
    1
    ·
    edit-2
    9 months ago

    CORRECTION: It was pointed out to me that I was confusing userStyles.css with userChrome.css. I’m not aware of anyway that styling the UI outside of the DOM could be directly detectable. Theoretically, if you could resize some UI elements that would change the viewport size and therefore be detectable. I’m not informed enough on userChrome.css to make that call however. Original comment is below.

    Yes. As CSS styles can be queried, any differences can be used as an identifiable data point used to form a fingerprint.

    • Knusper@feddit.de
      link
      fedilink
      arrow-up
      5
      ·
      9 months ago

      Are you talking about userContent.css? For that, it makes sense to me that it would be visible to webpages, since it applies styles to webpages.

      But OP is talking about userChrome.css, which styles the Firefox UI. I would be very surprised, if that’s not isolated from webpages.

    • 👁️👄👁️@lemm.ee
      link
      fedilink
      English
      arrow-up
      2
      ·
      9 months ago

      Think what you’re talking to more applies to add-ons like dark reader. Websites can’t see what your browser visually looks like.

      Maybe they can see if your userchrome js modified the height by seeing the viewport size, but that’s getting way paranoid for it to be realistically used against you

      • stifle867@programming.dev
        link
        fedilink
        arrow-up
        1
        ·
        9 months ago

        Yes you are correct. Another commenter pointed out I was getting mixed up between user styles and user chrome. Funny that we both considered how modifying user chrome could potentially impact viewport size! We both have paranoid minds :P