CustomWeb/popup.html

24 lines
646 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="css/common.css"/>
<link rel="stylesheet" href="css/popup.css"/>
<title>Custom Web Popup</title>
</head>
<body>
<section>
<span id="manage" class="line btn"><img src="img/icon48.png"/><span>Manage Files</span></span>
</section>
<section id="add-new">
<div class="line">
<span id="add-js" class="btn">Add Script</span>
<span id="add-css" class="btn">Add Style</span>
</div>
</section>
<section id="files"></section>
<script src="js/storage.js"></script>
<script src="js/file.js"></script>
<script src="js/popup.js"></script>
</body>
</html>