mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-09 13:07:05 +03:00
12 lines
408 B
JavaScript
12 lines
408 B
JavaScript
function getYouTubeVideoID(url) { // Returns with video id else returns false
|
|
var regExp = /^.*((youtu.be\/)|(v\/)|(\/u\/\w\/)|(embed\/)|(watch\?))\??v?=?([^#\&\?]*).*/;
|
|
var match = url.match(regExp);
|
|
var id = new URL(url).searchParams.get("v");
|
|
if (url.includes("/embed/")) {
|
|
//it is an embed, don't search for v
|
|
id = match[7];
|
|
}
|
|
|
|
return (match && match[7].length == 11) ? id : false;
|
|
}
|