mirror of
https://github.com/ajayyy/SponsorBlock.git
synced 2025-12-09 13:07:05 +03:00
Added getYouTubeVideoStartTime
This commit is contained in:
11
utils.js
11
utils.js
@@ -9,3 +9,14 @@ function getYouTubeVideoID(url) { // Returns with video id else returns false
|
|||||||
|
|
||||||
return (match && match[7].length == 11) ? id : false;
|
return (match && match[7].length == 11) ? id : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//returns the start time of the video if there was one specified (ex. ?t=5s)
|
||||||
|
function getYouTubeVideoStartTime(url) {
|
||||||
|
let searchParams = new URL(url).searchParams;
|
||||||
|
var startTime = searchParams.get("t");
|
||||||
|
if (startTime == null) {
|
||||||
|
startTime = searchParams.get("time_continue");
|
||||||
|
}
|
||||||
|
|
||||||
|
return startTime;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user