From 32e94bc8ac133f632d0489868baa98d4c89e1bab Mon Sep 17 00:00:00 2001 From: Patrick Helm Date: Sun, 6 Dec 2015 01:38:58 +0100 Subject: [PATCH] Adds linux-support Without this change, I'd get the following error message when trying to install the chrome-extension: == Error message > Could not find key specification for 'command[1].suggested_key': > Either specific a key for 'linux', or speify a default key. --- chrome-extension/app/manifest.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chrome-extension/app/manifest.json b/chrome-extension/app/manifest.json index 145a983..ae66eb6 100644 --- a/chrome-extension/app/manifest.json +++ b/chrome-extension/app/manifest.json @@ -25,6 +25,7 @@ "toggle-tamper": { "suggested_key": { "windows": "Ctrl+Shift+P", + "linux": "Ctrl+Shift+P", "mac": "Command+Shift+P" }, "description": "Toggle Tamper" @@ -37,4 +38,4 @@ ], "devtools_page": "devtools.html", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" -} \ No newline at end of file +}