2c60532199
watch the emoji movie 💩
45 lines
891 B
HTML
45 lines
891 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>ClearURLs Add-on</title>
|
|
<style>
|
|
body {
|
|
overflow: hidden;
|
|
margin: 5px;
|
|
padding: 5px;
|
|
background: #fff;
|
|
}
|
|
|
|
div:first-child {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
div {
|
|
text-align: center;
|
|
padding: 5px 3px;
|
|
font-family: sans-serif;
|
|
font-size: 1.4em;
|
|
width: 110px;
|
|
margin-top: 5px;
|
|
background: #FFE2BF;
|
|
}
|
|
div:hover {
|
|
background: #FFD19A;
|
|
}
|
|
#enable {
|
|
border: 5px solid #FF8B00;
|
|
color: #A43B00;
|
|
}
|
|
#disable {
|
|
border: 5px solid #FF8B00;
|
|
color: #A43B00;
|
|
}
|
|
</style>
|
|
<script src="popup.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="enable"><b>Enable</b></div>
|
|
<div id="disable"><b>Disable</b></div><br>
|
|
<img src="icon128.png"></img>
|
|
</body>
|
|
</html> |