79 lines
1.5 KiB
HTML
79 lines
1.5 KiB
HTML
|
|
|
||
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
width: 300px;
|
||
|
|
padding: 20px;
|
||
|
|
font-family: Arial, sans-serif;
|
||
|
|
}
|
||
|
|
h2 {
|
||
|
|
margin-top: 0;
|
||
|
|
color: #0175C2;
|
||
|
|
}
|
||
|
|
button {
|
||
|
|
width: 100%;
|
||
|
|
padding: 12px;
|
||
|
|
margin: 8px 0;
|
||
|
|
border: none;
|
||
|
|
border-radius: 4px;
|
||
|
|
cursor: pointer;
|
||
|
|
font-size: 14px;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
#startBtn {
|
||
|
|
background-color: #4CAF50;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
#startBtn:hover {
|
||
|
|
background-color: #45a049;
|
||
|
|
}
|
||
|
|
#stopBtn {
|
||
|
|
background-color: #f44336;
|
||
|
|
color: white;
|
||
|
|
}
|
||
|
|
#stopBtn:hover {
|
||
|
|
background-color: #da190b;
|
||
|
|
}
|
||
|
|
#status {
|
||
|
|
padding: 12px;
|
||
|
|
margin: 12px 0;
|
||
|
|
border-radius: 4px;
|
||
|
|
text-align: center;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.tracking {
|
||
|
|
background-color: #dff0d8;
|
||
|
|
color: #3c763d;
|
||
|
|
}
|
||
|
|
.not-tracking {
|
||
|
|
background-color: #f2dede;
|
||
|
|
color: #a94442;
|
||
|
|
}
|
||
|
|
#info {
|
||
|
|
font-size: 12px;
|
||
|
|
color: #666;
|
||
|
|
margin-top: 12px;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<h2>Tab Tracker</h2>
|
||
|
|
|
||
|
|
<div id="status" class="not-tracking">
|
||
|
|
Not Tracking
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<button id="startBtn">Start Tracking</button>
|
||
|
|
<button id="stopBtn" style="display: none;">Stop Tracking</button>
|
||
|
|
|
||
|
|
<div id="info">
|
||
|
|
<p>Tracked tabs: <span id="tabCount">0</span></p>
|
||
|
|
<p>Visit <a href="https://tab.caesargaming.org" target="_blank">tab.caesargaming.org</a> to view your tabs.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<script src="popup.js"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|