From 9328e96d8084b8bd6bc8e6486809da94883754a5 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Tue, 23 Aug 2016 16:53:05 -0700 Subject: Add shortcut for opening MetaMask. --- app/manifest.json | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'app') diff --git a/app/manifest.json b/app/manifest.json index 09bc9eb37..99879eed3 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+M", + "mac": "Command+M", + "chromeos": "Ctrl+M", + "linux": "Ctrl+M" + } + } + }, "icons": { "16": "images/icon-16.png", "128": "images/icon-128.png" -- cgit From 1444f5451fc78b3cb74a6f54ed18ccec129f0988 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Wed, 24 Aug 2016 10:25:59 -0700 Subject: Change shortcut to Alt+M --- app/manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app') diff --git a/app/manifest.json b/app/manifest.json index 99879eed3..cd471728b 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -7,10 +7,10 @@ "commands": { "_execute_browser_action": { "suggested_key": { - "windows": "Ctrl+M", - "mac": "Command+M", - "chromeos": "Ctrl+M", - "linux": "Ctrl+M" + "windows": "Alt+M", + "mac": "Alt+M", + "chromeos": "Alt+M", + "linux": "Alt+M" } } }, -- cgit From cf5b8ba3882cbe7537eddc4ea3ad6495cec1ad75 Mon Sep 17 00:00:00 2001 From: Kevin Serrano Date: Wed, 24 Aug 2016 11:15:03 -0700 Subject: Change shortcut again to Ctrl+Alt+M --- app/manifest.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'app') diff --git a/app/manifest.json b/app/manifest.json index cd471728b..c1b9ee817 100644 --- a/app/manifest.json +++ b/app/manifest.json @@ -7,10 +7,10 @@ "commands": { "_execute_browser_action": { "suggested_key": { - "windows": "Alt+M", - "mac": "Alt+M", - "chromeos": "Alt+M", - "linux": "Alt+M" + "windows": "Ctrl+Alt+M", + "mac": "Command+Alt+M", + "chromeos": "Ctrl+Alt+M", + "linux": "Ctrl+Alt+M" } } }, -- cgit