mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
d8c31e3da5
- Now you can close the panel by clicking outside of it (#40) - Added ability to move only selected tabs aside (#19) - Context menu entries removed from pages' context menu (#41) - After update extension now will open GitHub Releases page with the latest version - Minor performance improvements Co-authored-by: Amine A. <15179425+AmineI@users.noreply.github.com> Co-Authored-By: Michael Gordeev <michael@xfox111.net>
76 lines
2.5 KiB
HTML
76 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title loc="name">Tabs aside</title>
|
|
<link id="icon" rel="shortcut icon" type="image/png" href="icons/light/empty/16.png" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/style.css" />
|
|
<link rel="stylesheet" type="text/css" href="css/style.generic.css" />
|
|
<link rel="stylesheet" type="text/css" href="css/style.dark.css" />
|
|
<link rel="stylesheet" type="text/css" href="css/style.listview.css" />
|
|
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="tabsAside background">
|
|
<div class="tabsAside closeArea"></div>
|
|
<aside class="tabsAside pane">
|
|
<header>
|
|
<h1 loc="name">Tabs aside</h1>
|
|
<button loc_alt="options" class="btn more" title="Options"></button>
|
|
|
|
<nav>
|
|
<p>
|
|
<input type="checkbox" id="loadOnRestore" />
|
|
<label loc="loadOnRestore" for="loadOnRestore">Load tabs on restore</label>
|
|
</p>
|
|
<p>
|
|
<input type="checkbox" id="swapIconAction" />
|
|
<label loc="swapIconAction" for="swapIconAction">Set tabs aside on extension icon click (Alt+P or right-click to open the pane)</label>
|
|
</p>
|
|
<p>
|
|
<input type="checkbox" id="showDeleteDialog" />
|
|
<label loc="showDeleteDialog" for="showDeleteDialog">Show confirmation dialog before deleting an item</label>
|
|
</p>
|
|
<hr />
|
|
<div>
|
|
<button loc="github" value="https://github.com/xfox111/TabsAsideExtension">Visit GitHub page</button>
|
|
<button loc="contributors" value="https://github.com/XFox111/TabsAsideExtension/graphs/contributors">Project contributors</button>
|
|
<button loc="feedback" feedback-button>Leave feedback</button>
|
|
<button loc="buyMeACoffee" value="https://buymeacoffee.com/xfox111">Buy me a coffee!</button>
|
|
</div>
|
|
<hr />
|
|
<p>
|
|
<small>v1.0</small><br />
|
|
<span loc="credits">Developed by Michael Gordeev</span> (<a href="https://twitter.com/xfox111" target="_blank">@xfox111</a>)
|
|
</p>
|
|
</nav>
|
|
|
|
<button loc_alt="closePanel" class="btn remove" title="Close panel"></button>
|
|
<a class="saveTabs"><span class="iconArrowRight"></span> <span loc="setAside">Set current tabs aside</span></a>
|
|
|
|
<div class="listviewSwitch tile">
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
</div>
|
|
<div class="listviewSwitch list">
|
|
<div></div>
|
|
<div></div>
|
|
<div></div>
|
|
</div>
|
|
</header>
|
|
|
|
<section>
|
|
<h2 loc="nothingSaved">You have no aside tabs</h2>
|
|
</section>
|
|
</aside>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="js/aside-script.js"></script>
|
|
</body>
|
|
|
|
</html> |