clear-urls-browser-extension/popup_new.html
2017-08-31 21:19:32 +02:00

83 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="switchButtons.css">
</head>
<body>
<div class="container-fluid" style="background: url('img-noise-361x370.png');background-size: auto;">
<div class="row">
<nav class="col-sm-1 navbar navbar-dark bg-dark">
<span class="navbar-brand">
<img src="icon38.png" width="30" height="30" class="d-inline-block align-top" alt="">
ClearURLs
</span>
</nav>
</div>
<br>
<div class="row">
<div class="col-sm-1">
<h5>Configs</h5>
<label class="switch">
<input type="checkbox" id="globalStatus">
<span class="slider round"></span>
<label>Filters</label>
</label>
<br>
<label class="switch">
<input type="checkbox" id="tabcounter">
<span class="slider round"></span>
<label>Toolbar counter</label>
</label>
</div>
</div>
<br>
<div class="row">
<div class="col-sm-1">
<h5>Statistics</h5>
<div class="progress">
<div class="progress-bar bg-danger" role="progressbar" style="width: 0%" id="progress_blocked"></div>
<div class="progress-bar bg-info" role="progressbar" style="width: 100%" id="progress_non_blocked"></div>
</div>
<br>
<h6>Total elements</h6>
<p class="text-info text-right" id="statistics_total_elements"></p>
<h6>Total blocked elements</h6>
<p class="text-danger text-right" id="statistics_value"></p>
<h6>Percentage of total traffic</h6>
<p class="text-right" id="statistics_value_global_percentage"></p>
<p class="text-center">
<button type="button" id="reset_counter_btn" class="btn btn-outline-danger" title="Reset the global statistics">Reset counter</button>
</p>
</div>
</div>
<footer>
<div class="row">
<div class="col-sm-1 bg-dark text-center">
<small class="text-muted">Version 1.1.2.0</small>
</div>
</div>
</footer>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="jquery-3.2.1.min.js"></script>
<script src="popper.min.js"></script>
<script src="bootstrap.min.js"></script>
<script src="popup_new.js"></script>
</body>
</html>