tabswiper.html: add "Show" button

This commit is contained in:
He4eT 2023-08-17 04:12:51 +03:00
commit 719c5841e7

View file

@ -10,6 +10,7 @@
<body> <body>
<main class='popup'> <main class='popup'>
<article class='tabswiper'> <article class='tabswiper'>
<header> <header>
<section class='tabCounter'> <section class='tabCounter'>
<img id='favicon' class='favicon' alt='Favicon' /> <img id='favicon' class='favicon' alt='Favicon' />
@ -19,37 +20,37 @@
0 0
</span> </span>
</section> </section>
<section class='actions'> <section class='actions'>
<button <button
id='buttonClose' id='buttonClose'
class='actionButton close' class='actionButton'
title='Close this tab. Shortcuts: [J], [Left Arrow]' title='Close this tab (Press D or Left Arrow)'
> >
Close Close
</button> </button>
<button <button
id='buttonKeep' id='buttonShow'
class='actionButton keep' class='actionButton'
title='Keep this tab. Shortcuts: [K], [Right Arrow]' title='Switch to this tab (Press F)'
> >
Keep Show
</button>
<button
id='buttonSkip'
class='actionButton'
title='Proceed to the next tab (Press K or Right Arrow)'
>
Skip
</button> </button>
</section> </section>
</header> </header>
<footer>
</footer> <a href='#' id='currentTab' class='currentTab'>
<section class='currentTab'> <section id='tabTitle' class='title'>&nbsp;</section>
<section id='titleTab' class='title'> <section id='tabURL' class='url'>&nbsp;</section>
Some title here
</section>
<a
id='linkTab'
class='url'
href='https://some.url/here'
>
https://some.url/here
</a> </a>
</section>
</article> </article>
</main> </main>