mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
* Add an item to group the active tab in a new group. * Text update --------- Co-authored-by: rebloor <git@sherpa.co.nz>
53 lines
1.4 KiB
HTML
53 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="tabs.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="panel">
|
|
<div class="panel-section panel-section-header">
|
|
<div class="text-section-header">Tabs-tabs-tabs</div>
|
|
</div>
|
|
|
|
<a href="#" id="tabs-move-beginning">Move active tab to the beginning of the window</a><br>
|
|
<a href="#" id="tabs-move-end">Move active tab to the end of the window</a><br>
|
|
|
|
<div class="panel-section-separator"></div>
|
|
|
|
<a href="#" id="tabs-duplicate">Duplicate active tab</a><br>
|
|
<a href="#" id="tabs-reload">Reload active tab</a><br>
|
|
<a href="#" id="tabs-alertinfo">Alert active tab info</a><br>
|
|
|
|
<div class="panel-section-separator"></div>
|
|
|
|
<a href="#" id="tabs-create">Create a tab</a><br>
|
|
<a href="#" id="tabs-remove">Remove active tab</a><br>
|
|
<a href="#" id="tabs-group">Add active tab to a new group</a><br>
|
|
|
|
<div class="panel-section-separator"></div>
|
|
|
|
<a href="#" id="tabs-create-reader">Create a tab in reader mode</a><br>
|
|
|
|
<div class="panel-section-separator"></div>
|
|
|
|
<a href="#" id="tabs-add-zoom">Zoom in</a><br>
|
|
<a href="#" id="tabs-default-zoom">Reset zoom</a><br>
|
|
<a href="#" id="tabs-decrease-zoom">Zoom out</a><br>
|
|
|
|
<div class="panel-section-separator"></div>
|
|
|
|
<div class="switch-tabs">
|
|
<p>Switch to tab</p>
|
|
|
|
<div id="tabs-list"></div>
|
|
</div>
|
|
</div>
|
|
|
|
<script src="tabs.js"></script>
|
|
</body>
|
|
|
|
</html>
|