Spaces:
Running
Running
File size: 527 Bytes
4b456c3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Disabler</title>
<style>
body { width: 300px; padding: 10px; }
ul { list-style-type: none; padding: 0; }
li { margin-bottom: 5px; }
button { margin-left: 5px; }
</style>
</head>
<body>
<h1>JavaScript Disabler</h1>
<input type="text" id="site" placeholder="Enter domain (e.g., example.com)">
<button id="addSite">Add Site</button>
<h2>Blocked Sites:</h2>
<ul id="siteList"></ul>
<script src="popup.js"></script>
</body>
</html> |