Last active
September 17, 2019 04:16
-
-
Save saicharanreddyk/256055cedb8151f992587b64602e5576 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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