Skip to content

Instantly share code, notes, and snippets.

@bjin
Last active July 2, 2023 18:39
Show Gist options
  • Save bjin/460b15aaa1e98389289ca0b12619b689 to your computer and use it in GitHub Desktop.
Save bjin/460b15aaa1e98389289ca0b12619b689 to your computer and use it in GitHub Desktop.
shortcut manager export
// ==UserScript==
// @ShortcutManager
// @name Select the left tab
// @namespace rvR053jhYESb
// @key Ctrl+q
// @include http://*
// @include https://*
// @include chrome://*
// @execute SelectLeftTab([])
// ==/UserScript==
// ==UserScript==
// @ShortcutManager
// @name Select the right tab
// @namespace rvR053jhYESb
// @key Ctrl+e
// @include http://*
// @include https://*
// @include chrome://*
// @execute SelectRightTab([])
// ==/UserScript==
// ==UserScript==
// @ShortcutManager
// @name Scroll down by 200 pixels
// @namespace rvR053jhYESb
// @key Ctrl+d
// @include http://*
// @include https://*
// @include chrome://*
// @execute ScrollDown(["200"])
// ==/UserScript==
// ==UserScript==
// @ShortcutManager
// @name Scroll up by 200 pixels
// @namespace rvR053jhYESb
// @key Ctrl+u
// @include http://*
// @include https://*
// @include chrome://*
// @execute ScrollUp(["200"])
// ==/UserScript==
// ==UserScript==
// @ShortcutManager
// @name Scroll to the bottom
// @namespace rvR053jhYESb
// @key Ctrl+Shift+d
// @include http://*
// @include https://*
// @include chrome://*
// @execute ScrollToBottom([])
// ==/UserScript==
// ==UserScript==
// @ShortcutManager
// @name Scroll to the top
// @namespace rvR053jhYESb
// @key Ctrl+Shift+u
// @include http://*
// @include https://*
// @include chrome://*
// @execute ScrollToTop([])
// ==/UserScript==
// ==UserScript==
// @ShortcutManager
// @name Back
// @namespace rvR053jhYESb
// @key Ctrl+Shift+h
// @include http://*
// @include https://*
// @include chrome://*
// @execute Back([])
// ==/UserScript==
// ==UserScript==
// @ShortcutManager
// @name Forward
// @namespace rvR053jhYESb
// @key Ctrl+Shift+l
// @include http://*
// @include https://*
// @include chrome://*
// @execute Forward([])
// ==/UserScript==
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment