clear-urls-browser-extension/popup.html

52 lines
3.0 KiB
HTML
Raw Normal View History

<!doctype html>
<html>
<head>
<title>ClearURLs Add-on</title>
2017-08-06 16:34:02 +00:00
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="popup_style.css">
2017-08-06 16:34:02 +00:00
<script type="text/javascript" src="jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
</head>
<body>
<div id="main">
<div class="header">ClearURLs 0.4</div>
<div id="content">
<div id="default">
<div id="global">
2017-08-06 16:34:02 +00:00
<span id="statusText">En</span>able globally:<br>
<button id="statusBtn" class="status statusEnabled"></button>
</div>
<div id="individual">
Enable individually:<br>
<div id="presets">
2017-08-06 16:34:02 +00:00
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchDisabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholderrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<!-- <button id="exception" class="enable" onclick="handleException()">Enable on page</button><br> -->
</div>
</div>
</div>
<div id="custom">
2017-08-06 01:23:02 +00:00
My rules (advanced):<br>
<div id="rules">
2017-08-06 16:34:02 +00:00
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholdeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeer---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchEnabled"></button><div class="textElement">---placeholder---<br></div></div>
<div class="element"><button class="switch switchDisabled"></button><div class="textElement">---placeholder---<br></div></div>
</div>
<div id="addRuleOuter">
2017-08-06 01:23:02 +00:00
Add new rule:<br>
<div id="addRuleInner">
2017-08-06 16:34:02 +00:00
<div id="addRuleField"><input id="inputField" type="text"></div><button id="addRuleBtn"><img src="plus.png"></button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>