Αναζήτηση στην υποστήριξη

Προσοχή στις απάτες! Δεν θα σας ζητήσουμε ποτέ να καλέσετε ή να στείλετε μήνυμα σε κάποιον αριθμό τηλεφώνου ή να μοιραστείτε προσωπικά δεδομένα. Αναφέρετε τυχόν ύποπτη δραστηριότητα μέσω της επιλογής «Αναφορά κατάχρησης».

Learn More

In the "autoplay media with sound" popup, can the "Remember this decision" checkbox be unchecked by default?

  • 2 απαντήσεις
  • 2 έχουν αυτό το πρόβλημα
  • 2 προβολές
  • Τελευταία απάντηση από icme.su

more options

I uncheck "Remember this decision" 99% of the time, and I would like a way to have it unchecked by default. Maybe someplace in Options, about:config, or elsewhere? The popup and the checkbox are in this screenshot: https://i.imgur.com/Ht4xB3r.png

Firefox Nightly 64.0a1 (2018-09-12) (64-bit) Windows_NT 10.0

I uncheck "Remember this decision" 99% of the time, and I would like a way to have it unchecked by default. Maybe someplace in Options, about:config, or elsewhere? The popup and the checkbox are in this screenshot: https://i.imgur.com/Ht4xB3r.png Firefox Nightly 64.0a1 (2018-09-12) (64-bit) Windows_NT 10.0

Επιλεγμένη λύση

A search in the source code shows that this box is checked by default, so there is no way to have it unchecked.

    if (checkbox.show) {
      checkbox.checked = true;
      checkbox.label = gBrowserBundle.GetStringFromName("autoplay.remember");
    }

You can leave feedback and comments via "Help -> Submit Feedback..."

Ανάγνωση απάντησης σε πλαίσιο 👍 1

Όλες οι απαντήσεις (2)

more options

Επιλεγμένη λύση

A search in the source code shows that this box is checked by default, so there is no way to have it unchecked.

    if (checkbox.show) {
      checkbox.checked = true;
      checkbox.label = gBrowserBundle.GetStringFromName("autoplay.remember");
    }

You can leave feedback and comments via "Help -> Submit Feedback..."

more options

Thanks! I submitted feedback, and now I'm crossing my fingers.