diff options
author | Teddy Wing | 2019-07-23 19:43:10 +0200 |
---|---|---|
committer | Teddy Wing | 2019-07-23 19:43:10 +0200 |
commit | c484dff86148051c2d47778dc2c4da17a69ff753 (patch) | |
tree | 5747dbc721d72e206764be966c70622b56bdfc15 /AutoHotkey.ahk | |
download | AutoHotkey-Scripts-c484dff86148051c2d47778dc2c4da17a69ff753.tar.bz2 |
Add shortcut to reload the current Chrome extension
Mapped to Ctrl-Windows-g. Assumes that the working tab is selected, the
extension tab is to the right of it, and the "Reload" button is
highlighted on the Extensions page.
Diffstat (limited to 'AutoHotkey.ahk')
-rw-r--r-- | AutoHotkey.ahk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/AutoHotkey.ahk b/AutoHotkey.ahk new file mode 100644 index 0000000..0aa2af1 --- /dev/null +++ b/AutoHotkey.ahk @@ -0,0 +1,8 @@ +; Reload current Chrome extension +^#g:: +Send ^{Tab} +Send +{Tab} +Send {Tab} +Send {Space} +Send ^{Tab} +Send ^r |