What I want is simple - I'd like an that will cause the normal Preferences dialog to open with my extension's preference pane highlighted. I would have thought

<em:optionsURL>javascript:openPreferences("my_pref_pane");</em:optionsURL>

would have done it, but it doesn't. I also would have thought

<em:optionsURL>chrome://myapp/browser/options.xul</em:optionsURL>

, with options.xul having <script>javascript:openPreferences("my_pref_pane"); window.close(); </script>, would have done it, but Firefox just displays the script in the resulting popup window and refuses to execute it. How can I force Firefox to not assume I want to pop up some custom configuration dialog and just use the main preferences I already wrote?

(And why can't any helpful documentation exist? </rhetoricalQuestion>)

link|improve this question

20% accept rate
The Mozilla documentation gets easier to use as you get more familiar with it. AND it's a wiki so you can improve it yourself too! Anyway, putting the <script> tag in options.xul should work. Can you post your options.xul? – MatrixFrog May 27 '11 at 5:28
<?xml version="1.0"?> <!DOCTYPE overlay SYSTEM "chrome://npuff/locale/npuff.dtd"> <overlay id="npuff"> <script type="application/x-javascript"> alert("asdf"); </script> </overlay> – cbmanica May 27 '11 at 16:10
options.xul should be a window of its own (quite likely, a prefwindow) not an overlay. – MatrixFrog May 27 '11 at 17:07
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.