How to really change Firefox search engine plugin's name?

1

1

I tried to change the search engine plugin's name (displayed in the drop down menu when you're switching search engines) but to no avail.

I changed the os:ShortName tag in the search plugin xml file under "..my plugin folder..\searchplugins", but after restarting FF still displays the old name. I'm using FF 3.6.10.

Thanks in advance!

Dan7

Posted 2010-09-21T03:24:40.120

Reputation: 381

There is a bugzilla on this behavior at https://bugzilla.mozilla.org/show_bug.cgi?id=653926

– studgeek – 2011-12-03T18:31:42.943

Answers

3

I just upgraded to Firefox 4, and when changing os:ShortName didn't work turned to the internet. My search plugin does not have an update mechanism embedded, and yet after multiple browser restarts I still get the old name.

EDIT: Problem solved! It turned out that Firefox somehow caches its search engines. All you need to do is:

  • Move the offending search plugin file somewhere else.
  • Start Firefox for it to take notice of a folder change, prompting it to reinitialise the search plugin cache.
  • Close Firefox.
  • Move the file back where it belongs

And voila, done! All your plugins should now be named exactly as YOU want them to :-)

Dav

Posted 2010-09-21T03:24:40.120

Reputation: 178

0

in your Firefox/Profiles//searchplugins/blah.xml change the field os:ShortName and remove UpdateUrl to disable it from getting an updated XML from source.

EDIT: create a new file with the following xml

<SearchPlugin xmlns="http://www.mozilla.org/2006/browser/search/" xmlns:os="http://a9.com/-/specopensearch1.1/>
<os:ShortName>blahblah</os:ShortName>
<os:Description>asdad</os:Description>
<os:InputEncoding>UTF-8</os:InputEncoding>
<os:Url type="text/html" method="GET" template="http://www.imdb.com/find?q={searchTerms}&amp;sourceid=mozilla-search">
</os:Url>         
</SearchPlugin>

I have tested this with Firefox4 :)

Rohan Monga

Posted 2010-09-21T03:24:40.120

Reputation: 913

My xml file only has <os:Url type="application/opensearchdescription+xml" method="GET" template="..url to xml.." rel="self" /> that serves as update mechanism, I removed it and changed os:ShortName, still doesn't work :( – Dan7 – 2010-09-21T14:12:44.630

could try the thing after the edit. there isn't enough space here – Rohan Monga – 2010-09-22T06:15:27.880