Copies link without opening share dialog
< [YouTube] Remove share dialog 피드백으로 돌아가기
Currently, it doesn't work for links like https://www.youtube.com/watch?app=desktop&v=egEraZP9yXQ which seems to be something that YouTube is showing on desktops. Changing the regex to /(?<=(\?|&)v=).+?(?=(&|$))/ig fixes it.
https://www.youtube.com/watch?app=desktop&v=egEraZP9yXQ
/(?<=(\?|&)v=).+?(?=(&|$))/ig
답글을 게시하려면 로그인하세요.
Currently, it doesn't work for links like
https://www.youtube.com/watch?app=desktop&v=egEraZP9yXQ
which seems to be something that YouTube is showing on desktops. Changing the regex to/(?<=(\?|&)v=).+?(?=(&|$))/ig
fixes it.