mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 06:48:37 +02:00
21 lines
643 B
HTML
21 lines
643 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="tabs.css"/>
|
|
</head>
|
|
|
|
<body>
|
|
<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>
|
|
<a href="#" id="tabs-duplicate">Duplicate active tab</a><br>
|
|
<a href="#" id="tabs-reload">Reload active tab</a><br>
|
|
<a href="#" id="tabs-remove">Remove active tab</a><br>
|
|
<a href="#" id="tabs-create">Create a tab</a><br>
|
|
<a href="#" id="tabs-alertinfo">Alert active tab info</a><br>
|
|
<script src="tabs.js"></script>
|
|
</body>
|
|
|
|
</html>
|