Skip to content

Commit

Permalink
Merge branch 'hf-defauly_blockexplorer'
Browse files Browse the repository at this point in the history
* hf-defauly_blockexplorer:
  Increased version number
  Added Etherscan as the default blockexplorer
  • Loading branch information
Harry Denley committed Jul 13, 2017
2 parents 7802bbf + d715ef2 commit 713656e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions js/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ chrome.runtime.onMessage.addListener(
break;
case 'blockchain_explorer' :
strResponse = localStorage.getItem("ext-etheraddresslookup-blockchain_explorer");
if(strResponse === null) {
strResponse = "https://etherscan.io/address";
}
break;
case 'blacklist_domains' :
//This option is enabled by default
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.6",
"version": "1.3.7",

"browser_action": {
"default_icon": "images/icon.png",
Expand Down

0 comments on commit 713656e

Please sign in to comment.