Skip to content

Instantly share code, notes, and snippets.

@saicharanreddyk
Last active September 17, 2019 04:16
Show Gist options
  • Save saicharanreddyk/256055cedb8151f992587b64602e5576 to your computer and use it in GitHub Desktop.
Save saicharanreddyk/256055cedb8151f992587b64602e5576 to your computer and use it in GitHub Desktop.
Book mark this below piece of code in your browser and just click on it once you logged into salesforce Org. 
javascript: alert('Copied to Clipboard SessionId --> ' +document.cookie.match(/(^|;\s*)sid=(.+?);/)[2]); var copyFrom = document.createElement("textarea"); copyFrom.textContent = document.cookie.match(/(^|;\s*)sid=(.+?);/)[2]; var body = document.getElementsByTagName('body')[0]; body.appendChild(copyFrom); copyFrom.select(); document.execCommand('copy'); body.removeChild(copyFrom);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment