diff options
| author | Teddy Wing | 2017-04-29 01:14:44 +0200 |
|---|---|---|
| committer | Teddy Wing | 2017-12-19 03:57:19 +0100 |
| commit | ba322b7a93e94cf83ca5a8b67419fe2d8c23b1de (patch) | |
| tree | e1b8b207e83da376cc4268524136a239fdc8f4d4 /manifest.json | |
| parent | 91c43a2256d4622413fcf653c449dd4968e2818f (diff) | |
| download | chrome-copy-urls-from-all-tabs-ba322b7a93e94cf83ca5a8b67419fe2d8c23b1de.tar.bz2 | |
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.
Diffstat (limited to 'manifest.json')
| -rw-r--r-- | manifest.json | 3 |
1 files changed, 2 insertions, 1 deletions
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" } |
