Init from Manwell

This commit is contained in:
nazrin 2024-12-25 23:04:55 +00:00
commit 4ec6d1e14f
25 changed files with 1369 additions and 0 deletions

24
popup.html Normal file
View file

@ -0,0 +1,24 @@
<!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>