diff options
| author | Teddy Wing | 2017-04-29 01:14:44 +0200 | 
|---|---|---|
| committer | Teddy Wing | 2017-04-29 01:14:44 +0200 | 
| commit | 1ab43094f3308c880ab4aa81ae2b440d4bae44e9 (patch) | |
| tree | e1b8b207e83da376cc4268524136a239fdc8f4d4 | |
| parent | 91c43a2256d4622413fcf653c449dd4968e2818f (diff) | |
| download | chrome-copy-urls-from-all-tabs-1ab43094f3308c880ab4aa81ae2b440d4bae44e9.tar.bz2 | |
manifest.json: Don't make suggested keyboard shortcut Mac-specificfix-windows-MacCtrl-shortcut-bug
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.'.
| -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"  		} | 
