Skip to content

Commit

Permalink
Merge pull request #66 from masonmcelvain/add-shortcuts
Browse files Browse the repository at this point in the history
feat: open popup shortcut
  • Loading branch information
masonmcelvain authored Jan 15, 2023
2 parents 9d594c0 + 0814d38 commit 2073d77
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hop",
"version": "1.1.12",
"version": "1.1.13",
"description": "An icon-first bookmark manager",
"main": "src/public/index.tsx",
"packageManager": "[email protected]",
Expand Down
12 changes: 10 additions & 2 deletions src/public/chrome/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Hop",
"description": "An icon-first bookmark manager",
"version": "1.1.12",
"version": "1.1.13",
"manifest_version": 3,
"action": {
"default_title": "Hop",
Expand All @@ -19,5 +19,13 @@
"48": "/icons/hop48.png",
"128": "/icons/hop128.png"
},
"permissions": ["storage", "tabs"]
"permissions": ["storage", "tabs"],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Toggle Hop popup"
}
}
}
10 changes: 9 additions & 1 deletion src/public/firefox/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Hop",
"description": "An icon-first bookmark manager",
"version": "1.1.12",
"version": "1.1.13",
"manifest_version": 2,
"browser_action": {
"default_title": "Hop",
Expand All @@ -13,6 +13,14 @@
"96": "icon.svg"
},
"permissions": ["storage", "tabs"],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+O"
},
"description": "Toggle Hop popup"
}
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]"
Expand Down

0 comments on commit 2073d77

Please sign in to comment.