搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Unable to remove suggestion from address bar

more options

I made sure weather.com was deleted from my bookmarks and history but it still appeared as a suggestion in the address bar when I typed "weather", so I had to remove ".com" with backspace before pressing enter.

What do I have to do to make that suggestion stop?

I made sure weather.com was deleted from my bookmarks and history but it still appeared as a suggestion in the address bar when I typed "weather", so I had to remove ".com" with backspace before pressing enter. What do I have to do to make that suggestion stop?

所有回复 (2)

more options

Step 1: Install sqlite3. (Look for "Precompiled Binaries for <your operating system>") https://www.sqlite.org/download.html

Step 2: Find your profile. https://support.mozilla.org/en-US/kb/profiles-where-firefox-stores-user-data

Step 3: Open terminal on OS X or command prompt on Windows and cd or dir to your Firefox profile.

Step 4: Type "sqlite3 places.sqlite". You should see "sqlite>". If this doesn't work then you haven't found your profile or you haven't installed sqlite3. (Although, it's possible these instructions don't quite work on Windows. I haven't tested on Windows.)

Step 5: Type

delete from moz_hosts where host like 'example.com';

(But replace example.com with the website that Firefox keeps suggesting.)

Firefox should stop suggesting example.com

more options

It might be slightly easier to use the SQLite Manager extension:

https://addons.mozilla.org/firefox/addon/sqlite-manager/

Adding some screen shots. SQLite Manager adds itself to the classic Tools menu. If you do not normally display the menu bar, on Windows, you can tap the Alt key to display it temporarily.

Please note that it's not a good idea to delete directly from other tables in the Places database because there are various interdependencies among them.

由jscher2000 - Support Volunteer于修改