8 Commits

Author SHA1 Message Date
Kevin Röbert
bf6ef0049a Merge branch 'master' of https://gitlab.com/KevinRoebert/ClearUrls 2018-09-26 17:44:38 +02:00
Kevin Röbert
bba11abc92 Version 1.3.3.18 2018-09-26 17:44:33 +02:00
Kevin Röbert
0dd713cbab Update README.md 2018-09-26 15:42:06 +00:00
Kevin Röbert
e9cd5af088 Update README.md 2018-09-26 15:41:08 +00:00
Kevin Röbert
2bf4a1e806 Update README.md 2018-09-26 15:39:33 +00:00
Kevin Röbert
228015e640 New Addon version and 10k downloads :) 2018-09-26 17:35:50 +02:00
Kevin Röbert
7087935918 New rules new hash 2018-09-25 22:11:20 +02:00
Kevin Röbert
a4312f005c Update for facebook 2018-09-25 22:10:31 +02:00
13 changed files with 532 additions and 4 deletions

View File

@@ -242,5 +242,10 @@
"error_report_url": { "error_report_url": {
"message": "Es schaut so aus, als ob diese URL schon gemeldet wurde.", "message": "Es schaut so aus, als ob diese URL schon gemeldet wurde.",
"description": "" "description": ""
},
"donate_button": {
"message": "Eine Spende (Schenkung) für den ClearURLs Urheber.",
"description": ""
} }
} }

View File

@@ -242,5 +242,10 @@
"error_report_url": { "error_report_url": {
"message": "It seems like this URL has already been reported.", "message": "It seems like this URL has already been reported.",
"description": "" "description": ""
},
"donate_button": {
"message": "A donation for the ClearURLs creator.",
"description": ""
} }
} }

Binary file not shown.

Binary file not shown.

View File

@@ -208,6 +208,7 @@ function setText()
injectText('configs_head','popup_html_configs_head'); injectText('configs_head','popup_html_configs_head');
injectText('configs_switch_statistics','configs_switch_statistics'); injectText('configs_switch_statistics','configs_switch_statistics');
injectText('reportButton', 'popup_html_report_button', true); injectText('reportButton', 'popup_html_report_button', true);
$('#donate').prop('title', translate('donate_button'));
} }
/** /**

View File

@@ -14,3 +14,13 @@ body {
.col-sm-1 { .col-sm-1 {
margin-top: -10px; margin-top: -10px;
} }
#donate {
transition: 0.3s;
opacity: 0.8;
color: red;
}
#donate:hover {
opacity: 1;
}

View File

@@ -186,7 +186,7 @@
"urlPattern": "(https:\\/\\/|http:\\/\\/)([a-zA-Z0-9-]*\\.)?(facebook)(\\.[a-zA-Z]{2,})(.*\\?.*)", "urlPattern": "(https:\\/\\/|http:\\/\\/)([a-zA-Z0-9-]*\\.)?(facebook)(\\.[a-zA-Z]{2,})(.*\\?.*)",
"completeProvider": false, "completeProvider": false,
"rules": [ "rules": [
"hc_location=[^\\/|\\?|&]*(\\/|&(amp;)?)?", "hc_[a-zA-Z]*=[^\\/|\\?|&]*(\\/|&(amp;)?)?",
"ref=[^\\/|\\?|&]*(\\/|&(amp;)?)?" "ref=[^\\/|\\?|&]*(\\/|&(amp;)?)?"
], ],
"exceptions": [ "exceptions": [

View File

@@ -1 +1 @@
63370834b644e5835523e1fd83a79d6b2a761c5b1a98517a5ae174549e90e6c1 a95e87aada0aa139767457391cfbfb7480638dd29b5872f97030844a9eb69db6

View File

@@ -28,12 +28,14 @@
</span><br /> </span><br />
<span class="label label-warning pull-left small-version" <span class="label label-warning pull-left small-version"
id="version"></span> id="version"></span>
<a id="donate" target="_blank" href="https://www.paypal.me/KevinRoebert">
<span class="pull-right glyphicon glyphicon-heart"></span>
</a>
</span> </span>
</div> </div>
</div> </div>
</nav> </nav>
</div> </div>
<div class="row" id="incognito" style="display:none;"> <div class="row" id="incognito" style="display:none;">
<div class="col-sm-1"> <div class="col-sm-1">
<b class="text-justify word-wrap" style="color: #FF7800;"> <b class="text-justify word-wrap" style="color: #FF7800;">

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 890 KiB

View File

@@ -1,7 +1,7 @@
{ {
"manifest_version": 2, "manifest_version": 2,
"name": "ClearURLs", "name": "ClearURLs",
"version": "1.3.3.17", "version": "1.3.3.18",
"author": "Kevin R.", "author": "Kevin R.",
"description": "Remove tracking elements form URLs.", "description": "Remove tracking elements form URLs.",
"homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls", "homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",