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
| javascript:(async function(){ | |
| if(!navigator.mediaDevices||!navigator.mediaDevices.getDisplayMedia){ | |
| alert("Screen recording not supported"); | |
| return; | |
| } | |
| var filename = prompt("Make sure you are in a tab other than the one you are recording.\nEnter filename (no extension):","lewm-recording"); | |
| if(!filename) filename = "lewm-recording"; | |
| alert("Select a TAB and check 'Share tab audio' in the popup. For audio, do NOT chose full screen or window."); |