diff --git a/source/options/components/page-main.ts b/source/options/components/page-main.ts index f44b2f4..5266798 100644 --- a/source/options/components/page-main.ts +++ b/source/options/components/page-main.ts @@ -31,6 +31,8 @@ export class PageMain extends Component { }; render() { + const isFirefox = import.meta.env.VITE_BROWSER === 'firefox'; + const queueItems = this.state.queue .sort((a, b) => a.added.getTime() - b.added.getTime()) .map( @@ -71,7 +73,10 @@ export class PageMain extends Component {

Adding links to your queue:

Opening the next link from your queue:

@@ -85,7 +90,9 @@ export class PageMain extends Component {

Opening the extension page:

    -
  • Double-click the extension icon.
  • + ${isFirefox + ? html`
  • Double-click the extension icon.
  • ` + : undefined}
  • Right-click the extension icon and click "Open the extension page".