mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 14:28:33 +02:00
22 lines
582 B
HTML
22 lines
582 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="bootstrap.min.css"/>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h3>Top Site and new tab override example</h3>
|
|
<p>For more examples see this
|
|
<a href="https://github.com/mdn/webextensions-examples">github repository</a>
|
|
or check the <a href="https://developer.mozilla.org/en-US/Add-ons/WebExtensions">WebExtension
|
|
documentation</a>.
|
|
</p>
|
|
<div id="site-list">
|
|
</div>
|
|
</div>
|
|
<script src="sites.js"></script>
|
|
</body>
|
|
</html>
|