mirror of
https://gitlab.com/KevinRoebert/ClearUrls
synced 2025-12-16 14:15:36 +07:00
Version 1.9.0
- Added #284 - Added #56 - Fixed #241 - Possible fix & workaround for #203 - Fixed bug in "history tracking injection protection". This option was not disabled, when the global filter switch are on off - Added an option to im-/export the log (requires the `downloads` permission) - Added an option to im-/export the settings (requires the `downloads` permission) - Added information page for blocked sites, when they are called in the `main_frame` - Added "multiple times URL encodes" recognition - Refactoring - Changed background script loading sequence to prevent that required functions are not yet loaded.
This commit is contained in:
@@ -32,10 +32,27 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
<link rel="stylesheet" href="../css/dataTables.bootstrap.min.css">
|
||||
<link rel="stylesheet" type="text/css" href="../css/core.css">
|
||||
<style>
|
||||
td {
|
||||
word-wrap: break-word;
|
||||
max-width: 200px;
|
||||
}
|
||||
td {
|
||||
word-wrap: break-word;
|
||||
max-width: 200px;
|
||||
}
|
||||
|
||||
.fileinput-button {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.fileinput-button input {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
margin: 0;
|
||||
opacity: 0;
|
||||
-ms-filter: 'alpha(opacity=0)';
|
||||
direction: ltr;
|
||||
cursor: pointer;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -58,7 +75,23 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
<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"></button>
|
||||
class="btn btn-danger" title="Reset the global log">
|
||||
</button>
|
||||
|
||||
<button type="button" id="export_log_btn"
|
||||
class="btn btn-success" title="Export the global log">
|
||||
<i class="glyphicon glyphicon-save"></i>
|
||||
<span id="export_log_btn_text"></span>
|
||||
</button>
|
||||
|
||||
<span id="import_log_btn"
|
||||
class="btn btn-success fileinput-button" title="Import the global log">
|
||||
<i class="glyphicon glyphicon-open"></i>
|
||||
<span id="import_log_btn_text"></span>
|
||||
<input type="file" name="file" id="importLog"/>
|
||||
</span>
|
||||
|
||||
|
||||
</p>
|
||||
<div class="table-responsive">
|
||||
<table class="table table-striped table-bordered"
|
||||
|
||||
Reference in New Issue
Block a user