diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2016-08-25 02:40:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-25 02:40:02 +0800 |
commit | 55745c59805e691e75b2ceabdbc353032971cc8e (patch) | |
tree | e0c75ff4d889525df0d5107bd55d218e98595abe | |
parent | a0c7b0b1a224c71091bdc221e0e6ad3c2550ee2e (diff) | |
parent | c27ad468d1a2ae40b50da2cc513599177f15d41e (diff) | |
download | tangerine-wallet-browser-55745c59805e691e75b2ceabdbc353032971cc8e.tar tangerine-wallet-browser-55745c59805e691e75b2ceabdbc353032971cc8e.tar.gz tangerine-wallet-browser-55745c59805e691e75b2ceabdbc353032971cc8e.tar.bz2 tangerine-wallet-browser-55745c59805e691e75b2ceabdbc353032971cc8e.tar.lz tangerine-wallet-browser-55745c59805e691e75b2ceabdbc353032971cc8e.tar.xz tangerine-wallet-browser-55745c59805e691e75b2ceabdbc353032971cc8e.tar.zst tangerine-wallet-browser-55745c59805e691e75b2ceabdbc353032971cc8e.zip |
Merge pull request #575 from MetaMask/shortcuts
Shortcut to open MetaMask
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | app/manifest.json | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b5e55e22..079420b2b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ - Added static image as fallback for when WebGL isn't supported. - Transaction history now has a hard limit. - Added info link on account screen that visits Etherscan. +- Added shortcut to open MetaMask (Ctrl+Alt+M or Cmd+Opt/Alt+M) ## 2.9.0 2016-08-22 diff --git a/app/manifest.json b/app/manifest.json index 09bc9eb37..c1b9ee817 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -4,6 +4,16 @@ "version": "2.9.0", "manifest_version": 2, "description": "Ethereum Browser Extension", + "commands": { + "_execute_browser_action": { + "suggested_key": { + "windows": "Ctrl+Alt+M", + "mac": "Command+Alt+M", + "chromeos": "Ctrl+Alt+M", + "linux": "Ctrl+Alt+M" + } + } + }, "icons": { "16": "images/icon-16.png", "128": "images/icon-128.png" |