Adjust usage details for missing Chromium functionality.
This commit is contained in:
parent
bdb06a1b15
commit
163f838ffc
|
@ -31,6 +31,8 @@ export class PageMain extends Component<Props, State> {
|
|||
};
|
||||
|
||||
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<Props, State> {
|
|||
|
||||
<p>Adding links to your queue:</p>
|
||||
<ul>
|
||||
<li>Right-click any link or tab and click "Add to Queue".</li>
|
||||
<li>
|
||||
Right-click any link ${isFirefox ? 'or tab' : ''} and click "Add
|
||||
to Queue".
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p>Opening the next link from your queue:</p>
|
||||
|
@ -85,7 +90,9 @@ export class PageMain extends Component<Props, State> {
|
|||
|
||||
<p>Opening the extension page:</p>
|
||||
<ul>
|
||||
<li>Double-click the extension icon.</li>
|
||||
${isFirefox
|
||||
? html`<li>Double-click the extension icon.</li>`
|
||||
: undefined}
|
||||
<li>
|
||||
Right-click the extension icon and click "Open the extension
|
||||
page".
|
||||
|
|
Loading…
Reference in New Issue