Skip to content

Instantly share code, notes, and snippets.

@ollicle
Created October 30, 2020 23:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ollicle/a441bcee60852a28e296b6c01b04ce6b to your computer and use it in GitHub Desktop.
Save ollicle/a441bcee60852a28e296b6c01b04ce6b to your computer and use it in GitHub Desktop.
3001-3003 port flip bookmarklet
// javascript:location.port%20=%20location.port%20===%20%273001%27%20?%20%273003%27%20:%20%273001%27;
location.port = location.port === '3001' ? '3003' : '3001';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment