-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCiteYouTubeVideoMLA.js
77 lines (61 loc) · 2.08 KB
/
CiteYouTubeVideoMLA.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
javascript:(() => {
function getUploadDate() {
return [...document.querySelectorAll("#info-container>#info>span")]
.map(element => element.innerText)
.map(text => text.replace(/Premiered /, ""))
.filter(text => Date.parse(text))
.map(text => new Date(text))
.map(date =>
`${date.getDate()} ${
date.toLocaleString('default', {month: 'long'})
} ${date.getFullYear()}`
)
.pop();
}
const uploadDate = getUploadDate();
if (!uploadDate) {
alert("Click the video description to expand the full upload date, then run the bookmarklet again.");
return;
}
function getTitle() {
return document.querySelector("#title>h1").innerText;
}
const title = getTitle();
function getAuthor() {
return document.querySelector("#channel-name a").innerText;
}
const author = getAuthor();
function timestampToSeconds(timestamp) {
const timestampParts = timestamp.split(":").map(Number);
let hours, minutes, seconds;
if (timestampParts.length === 2) {
hours = 0;
minutes = timestampParts[0];
seconds = timestampParts[1];
}
if (timestampParts.length === 3) {
hours = timestampParts[0];
minutes = timestampParts[1];
seconds = timestampParts[2];
}
const totalSeconds = (hours * 60 * 60) + (minutes * 60) + seconds;
return totalSeconds;
}
function getURL() {
const scrapedURL = window.location.href;
const videoID = scrapedURL.match(/(?<=\?v=)[^&\n]+/)[0];
const scrapedTimestamp = document.querySelector(".ytp-time-current").innerText;
const timestampAsSeconds = timestampToSeconds(scrapedTimestamp);
const includeTimestamp = confirm("Include current playback position?");
let shortURL;
if (includeTimestamp) {
shortURL = `https://youtu.be/${videoID}?t=${timestampAsSeconds}`;
} else {
shortURL = `https://youtu.be/${videoID}`;
}
return shortURL;
}
const url = getURL();
const citation = `"${title}" *YouTube*, uploaded by ${author}, ${uploadDate}, ${url}.`;
navigator.clipboard.writeText(citation);
})();