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

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

Learn More

I got a problem with the message "prevent this page from creating additional dialogues", How can I disable this checkbox and message ?

  • 3 απαντήσεις
  • 311 έχουν αυτό το πρόβλημα
  • 17 προβολές
  • Τελευταία απάντηση από benef

more options

I got a problem with the message prevent this page from creating additional dialogues", How can I disable this checkbox and message ?

I got a problem with the message ''prevent this page from creating additional dialogues", How can I disable this checkbox and message ?

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

more options

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

more options

as dickvl said on this topic :

You can hide that checkbox with code in userChrome.css

@namespace url("http://www.mozilla.org/keymaster/gatekeepe/there.is.only.xul");
#content tabmodalprompt checkbox[label^="Prevent"] {display:none!important;}


Actually, this works only if the word "Prevent" is written in the message, but if your version doesn't contain this word, it doesn't work anymore. So you have to replace "Prevent" by another word or the whole sentence, for example in French :

#content tabmodalprompt checkbox[label^="Empêcher"] {display:none!important;}

or

#content tabmodalprompt checkbox[label="Empêcher cette page d'ouvrir des dialogues supplémentaires"] {display:none!important;}


You can also add two translation :

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* set default namespace to XUL */
#content tabmodalprompt checkbox[label="Empêcher cette page d'ouvrir des dialogues supplémentaires"] {display:none!important;}
#content tabmodalprompt checkbox[label="Prevent this page from creating additional dialogs"] {display:none!important;}

Τροποποιήθηκε στις από το χρήστη cor-el

more options

Τροποποιήθηκε στις από το χρήστη benef