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

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

Μάθετε περισσότερα

How can I Show Search History - NOT browser history?

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

more options

Everyone knows that Firefox keeps a history of sites you've visited. Also, by right-clicking on the FF search box, it allows you to "Clear Search History". These are items that you have searched for in the past - but not necessarily clicked through to the results. (where are they kept?)

What I want is to SHOW Search History. In other words, I want to see (and select from) a list of phrases I've entered in the search box. If this isn't available as a feature it'd be a great plugin idea.

Everyone knows that Firefox keeps a history of sites you've visited. Also, by right-clicking on the FF search box, it allows you to "Clear Search History". These are items that you have searched for in the past - but not necessarily clicked through to the results. (where are they kept?) What I want is to SHOW Search History. In other words, I want to see (and select from) a list of phrases I've entered in the search box. If this isn't available as a feature it'd be a great plugin idea.

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

See also: (searchbar-history)

You can also make a drop down marker visible, just like the location bar has.

Add code to userChrome.css below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* Searchbar History */
#searchbar .autocomplete-history-dropmarker {
 -moz-binding: url("chrome://global/content/bindings/autocomplete.xml#history-dropmarker");
 display:-moz-box !important;
 -moz-appearance: toolbarbutton-dropdown !important;
}
Ανάγνωση απάντησης σε πλαίσιο 👍 2

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

more options

I don't personally save form and search history, so others hopefully can elaborate on the following: If the search box is blank and you press the down arrow on the keyboard, a certain amount of (autocomplete) history will be displayed. Presumably this is incomplete for space reasons.

The data itself is stored in a database file in your profile named formhistory.sqlite. Perhaps there is an add-on that provides convenient access to this data in a friendly format; I didn't search for one.

If there's no purpose-built add-on, you could use some powerful but not particularly user-friendly tools to view the data. For example, you could try the SQLite Manager extension. After you open the manager, you can choose the database you want to view from the toolbar where it says Select Profile Database.

Τροποποιήθηκε στις από τον/την jscher2000 - Support Volunteer

more options

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

See also: (searchbar-history)

You can also make a drop down marker visible, just like the location bar has.

Add code to userChrome.css below the default @namespace line.

The customization files userChrome.css (interface) and userContent.css (websites) are located in the chrome folder in the user profile folder.

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */

/* Searchbar History */
#searchbar .autocomplete-history-dropmarker {
 -moz-binding: url("chrome://global/content/bindings/autocomplete.xml#history-dropmarker");
 display:-moz-box !important;
 -moz-appearance: toolbarbutton-dropdown !important;
}

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

more options

Thanks, Cor-el, it's perfect! The plugin you refer to would be great for managing form history items, but that wasn't what I wanted. The mod to userChrome.css was exactly what I needed.

Interestingly, my file did not have the @namespace line in it, so I added it, but I'm not sure if I had to or why it worked without it in the first place. Oh, well.

Thanks again!!!