From af87ebcc8898458fc66345052ccde5da283174dc Mon Sep 17 00:00:00 2001 From: Guillaume Vincent Date: Mon, 17 Oct 2016 15:23:34 +0200 Subject: [PATCH] add a keyboard shortcut to open the LessPass pop-up --- extension/manifest.json | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/extension/manifest.json b/extension/manifest.json index e232aa9..1c37ed5 100644 --- a/extension/manifest.json +++ b/extension/manifest.json @@ -9,11 +9,26 @@ }, "content_scripts": [ { - "matches": [""], - "js": ["dist/content.min.js"], + "matches": [ + "" + ], + "js": [ + "dist/content.min.js" + ], "run_at": "document_end" } ], + "commands": { + "_execute_browser_action": { + "suggested_key": { + "default": "Ctrl+Shift+L", + "windows": "Ctrl+Shift+L", + "mac": "Command+Shift+L", + "chromeos": "Ctrl+Shift+L", + "linux": "Ctrl+Shift+L" + } + } + }, "permissions": [ "activeTab", "storage"