how to put youtube in Google Chrome console

// Step 1: Open Google Chrome and navigate to YouTube.
// Step 2: Right-click on the YouTube page and select "Inspect" from the context menu.
// Step 3: Go to the "Console" tab in the Developer Tools panel.
// Step 4: Copy and paste the following JavaScript code into the console and press Enter.
document.querySelector('video').pause();
// Step 5: To play the video, use the following code and press Enter.
document.querySelector('video').play();
// Step 6: To mute the video, use the following code and press Enter.
document.querySelector('video').muted = true;
// Step 7: To unmute the video, use the following code and press Enter.
document.querySelector('video').muted = false;