From ba322b7a93e94cf83ca5a8b67419fe2d8c23b1de Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 29 Apr 2017 01:14:44 +0200 Subject: manifest.json: Don't make suggested keyboard shortcut Mac-specific Use a non-Mac shortcut by default and designate the previously-used shortcut as the default on Mac. This change attempts to fix an error when installing the extension on Windows: Package is invalid. Details: 'Invalid value for 'commands[1].default': MacCtrl+L.'. Thanks to 'ncaunt' on GitHub for finding this issue. --- manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json index 827cc1a..1561978 100644 --- a/manifest.json +++ b/manifest.json @@ -33,7 +33,8 @@ "commands": { "download": { "suggested_key": { - "default": "MacCtrl+L" + "default": "Alt+L", + "mac": "MacCtrl+L" }, "description": "Download URL file" } -- cgit v1.2.3