Bug 1619766 Comment 2 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

so just to clarify the code would be something like this
```
global.openOptionsPage = extension => {
  const { options_ui } = extension.manifest;
  if (options_ui.open_in_tab) {
    // use GeckoViewTabBridge.createNewTab
  } else {
    // send message
  }
```
where an example for `createNewTab` is in Comment 1.
so just to clarify the code would be something like this
```
global.openOptionsPage = extension => {
  const { options_ui } = extension.manifest;
  if (options_ui.open_in_tab) {
    // use GeckoViewTabBridge.createNewTab
  } else {
    // send message
  }
}
```
where an example for `createNewTab` is in Comment 1.

Back to Bug 1619766 Comment 2