From 9d87a6ca0b4311e6e821288e3bf80fef3c2c9e78 Mon Sep 17 00:00:00 2001 From: 409H Date: Tue, 19 Sep 2017 20:08:23 +0100 Subject: [PATCH 1/2] Removes the www. common subdomain from the hostname. --- js/DomainBlacklist.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/DomainBlacklist.js b/js/DomainBlacklist.js index dd0ad05c..e1755ef7 100644 --- a/js/DomainBlacklist.js +++ b/js/DomainBlacklist.js @@ -39,6 +39,7 @@ } //Levenshtein - @sogoiii + var strCurrentTab = strCurrentTab.replace(/www\./g,''); var isBlacklisted = arrBlacklistedDomains.includes(strCurrentTab); var source = strCurrentTab.replace(/\./g,''); var intHolisticMetric = levenshtein(source, 'myetherwallet'); From 946d68970c8be7c5a7261c4698af31b8347290ee Mon Sep 17 00:00:00 2001 From: 409H Date: Tue, 19 Sep 2017 20:10:17 +0100 Subject: [PATCH 2/2] Increased version number --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 1a575f5f..39be7468 100644 --- a/manifest.json +++ b/manifest.json @@ -4,7 +4,7 @@ "name": "EtherAddressLookup", "short_name": "EtherAddressLookup", "description": "Adds links to strings that look like Ethereum addresses to your favorite blockchain explorer.", - "version": "1.7", + "version": "1.7.1", "browser_action": { "default_icon": "images/icon.png",