From b07cd8c62cb65cf6b913d53c8ad2c153f4143edd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20R=C3=B6bert?= Date: Wed, 23 Aug 2017 02:50:07 +0200 Subject: [PATCH] percentage fix --- manifest.json | 2 +- popup.html | 2 +- popup.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 9bf80df..fd16cf3 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "ClearURLs", - "version": "1.1.1.0", + "version": "1.1.1.1", "author": "Kevin R., Arne S.", "description": "Remove tracking elements form URLs. ", "homepage_url": "https://github.com/KevinRoebert/ClearUrls", diff --git a/popup.html b/popup.html index b1e9ca5..2ee7b39 100644 --- a/popup.html +++ b/popup.html @@ -10,7 +10,7 @@
-
ClearURLs 1.1.1.0
+
ClearURLs 1.1.1.1
diff --git a/popup.js b/popup.js index b8efb3f..0f62daa 100644 --- a/popup.js +++ b/popup.js @@ -70,7 +70,7 @@ function changeStatistics(){ globalURLCounter = 0; } - globalPercentage.text((globalCounter/globalURLCounter).toFixed(3)+"%"); + globalPercentage.text((globalCounter/globalURLCounter).toFixed(3)*100+"%"); }); };