Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorM. Wieschollek <passwords.public@mdns.eu>2022-05-02 10:01:10 +0300
committerGitHub <noreply@github.com>2022-05-02 10:01:10 +0300
commit4d7a3d6a60dfdeb84f68f7f8a96c2c81cbdf3c02 (patch)
treed231ed708fd8e038f6d700ce0163f1528a1dfd4b
parent7a2eb3e4edb8e7b98969398a66538fe9645c3cfc (diff)
parent1cfdc96240b71f62fe06845d6f87415244aca04e (diff)
Merge pull request #225 from calipee/feature/add_keyboard_shorcuts
add keyboard shortcuts to open extension window window
-rw-r--r--src/platform/chrome/manifest.json9
-rw-r--r--src/platform/fenix/manifest.json9
-rw-r--r--src/platform/firefox/manifest.json9
3 files changed, 24 insertions, 3 deletions
diff --git a/src/platform/chrome/manifest.json b/src/platform/chrome/manifest.json
index a50162c..f58ce77 100644
--- a/src/platform/chrome/manifest.json
+++ b/src/platform/chrome/manifest.json
@@ -57,5 +57,12 @@
],
"optional_permissions" : [
"clipboardRead"
- ]
+ ],
+ "commands": {
+ "_execute_browser_action": {
+ "suggested_key": {
+ "default": "Alt+Shift+0"
+ }
+ }
+ }
} \ No newline at end of file
diff --git a/src/platform/fenix/manifest.json b/src/platform/fenix/manifest.json
index 7019787..39f360f 100644
--- a/src/platform/fenix/manifest.json
+++ b/src/platform/fenix/manifest.json
@@ -85,5 +85,12 @@
],
"optional_permissions" : [
"clipboardRead"
- ]
+ ],
+ "commands": {
+ "_execute_browser_action": {
+ "suggested_key": {
+ "default": "Alt+Shift+0"
+ }
+ }
+ }
} \ No newline at end of file
diff --git a/src/platform/firefox/manifest.json b/src/platform/firefox/manifest.json
index e96eaa4..ddfb519 100644
--- a/src/platform/firefox/manifest.json
+++ b/src/platform/firefox/manifest.json
@@ -93,5 +93,12 @@
],
"optional_permissions" : [
"clipboardRead"
- ]
+ ],
+ "commands": {
+ "_execute_browser_action": {
+ "suggested_key": {
+ "default": "Alt+Shift+0"
+ }
+ }
+ }
} \ No newline at end of file