New Addon version and 10k downloads :)

This commit is contained in:
Kevin Röbert 2018-09-26 17:35:50 +02:00
parent 7087935918
commit 228015e640
9 changed files with 530 additions and 2 deletions

View File

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

View File

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

View File

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

View File

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

View File

@ -28,12 +28,14 @@
</span><br />
<span class="label label-warning pull-left small-version"
id="version"></span>
<a id="donate" target="_blank" href="https://www.paypal.me/KevinRoebert">
<span class="pull-right glyphicon glyphicon-heart"></span>
</a>
</span>
</div>
</div>
</nav>
</div>
<div class="row" id="incognito" style="display:none;">
<div class="col-sm-1">
<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,
"name": "ClearURLs",
"version": "1.3.3.17",
"version": "1.3.3.18",
"author": "Kevin R.",
"description": "Remove tracking elements form URLs.",
"homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",