mirror of
https://github.com/XFox111/TabsAsideExtension.git
synced 2026-04-22 07:58:01 +03:00
2b83f3bd60
Fixed version number Fixed browser closing Hid elements of unimplemented features Added code for issue #10 (help wanted)
63 lines
1.6 KiB
HTML
63 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>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" />
|
|
|
|
<style type="text/css">
|
|
body {
|
|
margin: 0px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
aside {
|
|
transform: none !important;
|
|
left: 0px;
|
|
width: initial !important;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="tabsAside">
|
|
<aside class="tabsAside pane">
|
|
<header>
|
|
<div>
|
|
<h1>Tabs aside</h1>
|
|
<button title="Options"></button>
|
|
|
|
<nav>
|
|
<!-- <p>
|
|
<input type="checkbox" id="discardOnRestore" oncha/>
|
|
<label for="discardOnRestore">Load tabs on restore</label>
|
|
</p> -->
|
|
<div>
|
|
<button value="https://github.com/xfox111/ChromiumTabsAside">Visit GitHub page</button>
|
|
<button value="https://chrome.google.com/webstore/detail/tabs-aside/mgmjbodjgijnebfgohlnjkegdpbdjgin">Leave feedback</button>
|
|
<button value="https://buymeacoffee.com/xfox111">Buy me a coffee!</button>
|
|
<!-- <button hidden>Backup saved tabs</button> -->
|
|
</div>
|
|
<p>
|
|
<small>v1.0</small><br />
|
|
Developed by Michael Gordeev (<a href="https://twitter.com/xfox111"
|
|
target="_blank">@xfox111</a>)
|
|
</p>
|
|
</nav>
|
|
</div>
|
|
<a class="saveTabs"> Set current tabs aside</a>
|
|
<hr />
|
|
</header>
|
|
|
|
<section>
|
|
<h2>You have no aside tabs</h1>
|
|
</section>
|
|
</aside>
|
|
|
|
<script type="text/javascript" src="js/aside-script.js"></script>
|
|
</body>
|
|
|
|
</html> |