Files
webextensions-examples/tabs-tabs-tabs/tabs.html
Flávio Rodrigues 67451bba0f Codding style fixes
2016-10-20 09:59:55 -02:00

24 lines
803 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>
<a href="#" id="tabs-add-zoom">Zoom in</a><br>
<a href="#" id="tabs-decrease-zoom">Zoom out</a><br>
<a href="#" id="tabs-default-zoom">Reset zoom</a><br>
<script src="tabs.js"></script>
</body>
</html>