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>)