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:
-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