clear-urls-browser-extension/popup.html

24 lines
664 B
HTML
Raw Normal View History

<!doctype html>
<html>
<head>
<title>ClearURLs Add-on</title>
2017-08-18 22:30:47 +00:00
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="popup_style.css">
<link rel="stylesheet" type="text/css" href="switchButtons.css">
<script src="jquery-3.2.1.min.js"></script>
<script src="popup.js"></script>
</head>
<body>
<div id="main">
2017-08-18 22:30:47 +00:00
<div class="header">ClearURLs 0.5</div>
<div id="content">
<div id="default">
<div id="global">
Enable globally:<br>
<button id="globalStatus" class="status statusEnabled"></button>
</div>
</div>
</div>
</div>
</body>
</html>