mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
19 lines
340 B
HTML
19 lines
340 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>My theme-integrated sidebar</title>
|
|
<style>
|
|
#myElement {
|
|
font: menu;
|
|
font-size: 1.5em;
|
|
font-weight: 500;
|
|
padding: 1em;
|
|
margin: 1em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="myElement">This is an awesome themed element!</div>
|
|
<script src="sidebar.js"></script>
|
|
</body>
|
|
</html> |