clear-urls-browser-extension/log.html

80 lines
2.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<title>Log from ClearURLs</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="dataTables.bootstrap.min.css">
<style>
td {
word-wrap: break-word;
max-width: 200px;
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container">
<div class="navbar-header">
<span class="navbar-brand">
<span><img src="icon38.png" width="30" height="30" alt=""></span>
ClearURLs
</span>
</div>
</div>
</nav>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<p class="text-center">
<button type="button" id="reset_log_btn" class="btn btn-danger" title="Reset the global log">Reset log</button>
</p>
<div class="table-responsive">
<table class="table table-striped table-bordered" width="100%" id="logTable" cellspacing="0">
<thead>
<tr>
<th data-orderable="false">
Before processing
</th>
<th data-orderable="false">
After processing
</th>
<th data-orderable="false">
Rule
</th>
<th data-orderable="true">
Time
</th>
</tr>
</thead>
<tbody id="tbody">
</tbody>
</table>
</div>
</div>
</div>
<br>
<footer>
<div class="row">
<div class="navbar-inverse navbar-fixed-bottom text-center">
<small class="text-muted">Version 1.1.2.5</small>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="jquery-3.2.1.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="jquery.dataTables.min.js"></script>
<script src="dataTables.bootstrap.min.js"></script>
<script src="log.js"></script>
</body>
</html>