-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathYouTube_-_Tweaks.user.js
More file actions
707 lines (571 loc) · 19.8 KB
/
YouTube_-_Tweaks.user.js
File metadata and controls
707 lines (571 loc) · 19.8 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
// ==UserScript==
// @name YouTube - Tweaks
// @author Tailszefox
// @namespace localhost
// @description Some tweaks to make YouTube better
// @icon https://i.imgur.com/8qxoj2N.png
// @include https://www.youtube.com/*
// @version 1.1
// @grant GM_setClipboard
// @grant GM_xmlhttpRequest
// @run-at document-start
// ==/UserScript==
var intervals = [];
var intervalsNames = [];
var clipboard = "";
// No iframe
if (self == top)
{
console.log("Script loaded");
window.addEventListener("yt-navigate-start", function() { console.log("start") });
window.addEventListener("yt-navigate-finish", function() { console.log("finish") });
window.addEventListener("DOMContentLoaded", function() { console.log("DOMload") });
window.addEventListener("load", function() { console.log("load") });
// Clear intervals each time we switch to a different page
window.addEventListener("yt-navigate-start", clearIntervals);
// Call main function when current page has loaded, either directly or through SPF
process(false);
//window.addEventListener("DOMContentLoaded", function() { process(false); });
window.addEventListener("yt-navigate-finish", function() { process(true); });
}
// Add new interval
function addInterval(f, time)
{
if (intervalsNames.includes(f.name))
{
console.log(f.name + " already has an interval");
return;
}
var intervalId = window.setInterval(f, time);
intervals.push(intervalId);
console.log("Adding new interval " + intervalId);
intervalsNames.push(f.name);
console.log("Adding new interval name " + f.name);
}
// Clear one interval using function name
function clearOneInterval(intervalName)
{
if (! intervalsNames.includes(intervalName))
{
console.log(intervalName + " not found!");
return;
}
var index = intervalsNames.indexOf(intervalName);
var intervalId = intervals[index];
window.clearInterval(intervalId);
intervals.splice(index, 1);
intervalsNames.splice(index, 1);
console.log("Clearing interval name " + intervalName);
console.log("Clearing interval " + intervalId);
console.log("New interval array: " + intervals);
console.log("New interval name array: " + intervalsNames);
}
// Clear all intervals previously added
function clearIntervals()
{
intervals.forEach(function(intervalId, index) {
window.clearInterval(intervalId);
console.log("Clearing interval " + intervalId);
console.log("Clearing interval name " + intervalsNames[index]);
});
intervals = [];
intervalsNames = [];
}
// Main function
function process(spf)
{
var href = window.location.href;
console.log("Current page is " + href);
console.log("Called with SPF " + spf);
// Subscriptions, channel, playlist: add copy to clipboard buttons
if(href.indexOf("/feed/subscriptions") != -1 || href.indexOf("/user/") != -1 || href.indexOf("/channel/") != -1 || href.indexOf("/playlist?") != -1)
{
clipboard = "";
addCopyToClipboardButtons();
addInterval(addCopyToClipboardButtons, 5000);
// Playlist page: change playlist link
if(href.indexOf("/playlists") != -1)
{
addInterval(changePlaylistLinks, 5000);
}
}
// Video
else if(href.indexOf("/watch?") != -1)
{
// Only called with SPF
if (spf == true)
{
//addInterval(stopAutoplay, 100);
addInterval(addRedditThreads, 1000);
addInterval(addResumeLink, 1000);
addInterval(expandDescription, 1000);
addInterval(expandPlayerContainer, 1000);
addInterval(expandPlayer, 5000);
addInterval(parseDescriptionForTracklist, 5000);
//addInterval(switchToFullHd, 5000);
}
}
}
// Add copy to clipboard buttons
function addCopyToClipboardButtons()
{
var href = window.location.href;
var selector = "";
// Subscriptions or channel
if(href.indexOf("/feed/subscriptions") != -1 || href.indexOf("/user/") != -1 || href.indexOf("/channel/") != -1)
{
selector = "#video-title";
}
// Playlist
else if(href.indexOf("/playlist?") != -1)
{
selector = "a.ytd-playlist-video-renderer";
}
links = document.querySelectorAll(selector);
for(var i = 0; i < links.length; i++)
{
var l = links[i];
if(l.getAttribute("data-scanned"))
continue;
var button = document.createElement("a");
button.innerHTML = "+";
button.style.cursor = "pointer";
button.style.color= "white";
button.style.float = "right";
button.style.fontSize = "24px";
button.style.position = "relative";
button.style.marginRight = "10px";
button.title = l.href;
button.addEventListener("click", function(e) {
e.target.style.color = "#008aff";
e.target.oldColor = e.target.style.color;
var url = e.target.title;
clipboard += url + " ";
GM_setClipboard(clipboard);
console.log("Added " + url + " to clipboard");
console.log("Clipboard is now " + clipboard);
}, true);
button.addEventListener("mouseover", function() {
this.oldColor = this.style.color;
this.style.color = "#74d8ff"
}, true);
button.addEventListener("mouseout", function() {
if (this.oldColor)
{
this.style.color = this.oldColor;
}
else
{
this.style.color = "white";
}
}, true);
l.parentNode.insertBefore(button, l);
l.setAttribute("data-scanned", "true");
}
}
// Display Reddit threads
function addRedditThreads()
{
console.log("Description is " + document.querySelector("#description"));
// Page has not finished loading
if ( document.querySelector("#description") == null)
return;
// Page has loaded, clear interval for this function
clearOneInterval("addRedditThreads");
// Clear current div if it already exists
if( document.querySelector("#redditThreads") != null )
{
console.log("Clearing already existing reddit threads");
document.querySelector("#redditThreads").remove();
}
if( document.querySelector("#redditThreadsNsfw") != null )
{
console.log("Clearing already existing NSFW reddit threads");
document.querySelector("#redditThreadsNsfw").remove();
}
// Extract current video ID
function getVideoId()
{
if (window.location.search.length > 0)
{
var s = window.location.search.substring(1);
var requestObjects = s.split('&');
for (var i = 0, len = requestObjects.length; i < len; i += 1)
{
var obj = requestObjects[i].split('=');
if (obj[0] === "v")
{
console.log("Video ID is " + obj[1]);
return obj[1];
}
}
}
return null;
}
// Get search string for Reddit to get threads
function getRedditSearchString()
{
var videoId = getVideoId();
if(videoId)
{
return "https://api.reddit.com/search.json?q=" + encodeURI("(url:\"3D"+videoId+"\" OR url:\""+videoId+"\") (site:youtube.com OR site:youtu.be)")
}
return null;
}
// Get search string for Reddit to get NSFW threads
function getRedditSearchStringNsfw()
{
var videoId = getVideoId();
if(videoId)
{
return "https://api.reddit.com/search.json?q=" + encodeURI("(url:\"3D"+videoId+"\" OR url:\""+videoId+"\") (site:youtube.com OR site:youtu.be) nsfw:yes")
}
return null;
}
// Create div that will contain the list
function createArea(nsfw)
{
var position = document.querySelector("#meta-contents").parentNode.nextElementSibling;
var div = document.createElement("div");
if(nsfw)
div.id = "redditThreadsNsfw";
else
div.id = "redditThreads";
div.style.fontSize = "1.4rem";
div.style.fontWeight = "400";
div.style.lineHeight = "2.1rem";
div.style.color = "white";
div.style.paddingBottom = "40px";
var ul = document.createElement("ul");
div.appendChild(ul);
position.parentNode.insertBefore(div, position);
return div;
}
// Add a thread to the list
function addRedditThread(div, thread, nsfw)
{
console.log("Adding thread from " + thread.subreddit);
var ul = div.firstChild;
ul.style.listStyleType = '"\u25b6"';
var li = document.createElement("li");
li.style.paddingLeft = "10px";
var link = thread.permalink;
var subreddit = thread.subreddit;
var comments = thread.num_comments;
var title = thread.title;
var threadLink = document.createElement("a");
threadLink.href = "https://www.reddit.com" + link;
threadLink.style.color = "rgb(39, 147, 230)";
threadLink.appendChild(document.createTextNode(title));
var subredditLink = document.createElement("a");
subredditLink.href = "https://www.reddit.com/r/" + subreddit;
subredditLink.style.color = "rgb(39, 147, 230)";
subredditLink.appendChild(document.createTextNode("/r/" + subreddit));
li.appendChild(subredditLink);
li.appendChild(document.createTextNode(" \u25cf "));
li.appendChild(threadLink);
li.appendChild(document.createTextNode(" \u25cf "));
li.appendChild(document.createTextNode(comments + " comments"));
if(nsfw)
{
li.appendChild(document.createTextNode(" \u25cf "));
li.appendChild(document.createTextNode("(NSFW)"));
}
ul.appendChild(li);
}
var searchString = getRedditSearchString();
if(searchString)
{
GM_xmlhttpRequest({
method: "GET",
url: searchString,
onload: function(response) {
results = JSON.parse(response.responseText);
var finalResults = [];
// Error
if (results === {} || results.kind !== 'Listing' || results.data.children.length === 0)
return;
var searchResults = results.data.children;
for(var i = 0; i < searchResults.length; i++)
{
var result = searchResults[i];
// No data
if(! result.data)
continue;
finalResults.push(result.data);
}
// Sort by decreasing number of comments
finalResults.sort(function(a, b){
return parseInt(b.num_comments) - parseInt(a.num_comments);
});
if(finalResults.length > 0)
{
var div = createArea(false);
for(var i = 0; i < finalResults.length; i ++)
{
addRedditThread(div, finalResults[i], false);
}
}
}
});
}
var searchStringNsfw = getRedditSearchStringNsfw();
if(searchStringNsfw)
{
GM_xmlhttpRequest({
method: "GET",
url: searchStringNsfw,
onload: function(response) {
results = JSON.parse(response.responseText);
var finalResults = [];
// Error
if (results === {} || results.kind !== 'Listing' || results.data.children.length === 0)
return;
var searchResults = results.data.children;
for(var i = 0; i < searchResults.length; i++)
{
var result = searchResults[i];
// No data
if(! result.data)
continue;
finalResults.push(result.data);
}
// Sort by decreasing number of comments
finalResults.sort(function(a, b){
return parseInt(b.num_comments) - parseInt(a.num_comments);
});
if(finalResults.length > 0)
{
var div = createArea(true);
for(var i = 0; i < finalResults.length; i ++)
{
addRedditThread(div, finalResults[i], true);
}
}
}
});
}
}
// Change playlist links to playlist itself instead of first video
function changePlaylistLinks()
{
var playlistLinks = document.querySelectorAll("a.ytd-grid-playlist-renderer");
// No playlist links found yet
if(playlistLinks.length == 0)
{
console.log("Waiting for playlist links...")
return;
}
console.log("Playlist links found:")
console.log(playlistLinks);
clearOneInterval("changePlaylistLinks");
playlistLinks.forEach(
function(playlistLink)
{
playlistLink.href = playlistLink.href.replace(/watch\?v=([-_a-zA-Z0-9]{11})&/gm, `playlist?`);
}
);
}
// TODO: use events maybe
function stopAutoplay()
{
var video = document.querySelector(".html5-main-video");
// No video found
if (video == null)
{
console.log("Waiting for video...");
return;
}
// Video not ready
if (video.readyState == 0)
{
console.log("Video not ready...");
return;
}
// Video ready, pause it and stop interval
console.log("Video ready!");
video.pause();
clearOneInterval("stopAutoplay");
}
function addResumeLink()
{
var video = document.querySelector(".html5-main-video");
// No video found
if (video == null)
{
console.log("Waiting for video...");
return;
}
var oldDivResume = document.querySelector("#divResume");
if(oldDivResume)
{
oldDivResume.parentNode.removeChild(oldDivResume);
}
// No resume parameter in query
if( window.location.search.indexOf("&t=") == -1 )
{
clearOneInterval("addResumeLink");
return;
}
var resumeTime = window.location.search.split("&t=")[1].split("&")[0].replace("s", "");
console.log("Resume time is", resumeTime);
var divResume = document.createElement("div");
var aResume = document.createElement("a");
var textResume = document.createTextNode("Resume to " + resumeTime);
divResume.id = "divResume";
aResume.dataset.resumeSeconds = resumeTime;
aResume.style.color = "white";
aResume.style.cursor = "pointer";
aResume.addEventListener("click", function(e) {
var resumeTo = this.dataset.resumeSeconds;
video.currentTime = resumeTo;
}, true);
aResume.appendChild(textResume);
divResume.appendChild(aResume);
document.querySelector("div#info.style-scope ytd-video-primary-info-renderer").appendChild(divResume);
clearOneInterval("addResumeLink");
}
function expandDescription()
{
var video = document.querySelector(".html5-main-video");
// No video found
if (video == null)
{
console.log("Waiting for video...");
return;
}
document.querySelector("ytd-video-secondary-info-renderer.style-scope #more").click();
clearOneInterval("expandDescription");
}
function parseDescriptionForTracklist()
{
var video = document.querySelector(".html5-main-video");
// No video found
if (video == null)
{
console.log("Waiting for video...");
return;
}
clearOneInterval("parseDescriptionForTracklist");
var descriptionText = document.querySelector("#description").innerText;
var regex = /(^(.+)\s+((?:\d+:)?\d+:\d{2})$|^\[?((?:\d+:)?\d+:\d{2})\]?\s+(.+)$)/gm;
var tracklist = [];
let m;
while ((m = regex.exec(descriptionText)) !== null) {
if (m.index === regex.lastIndex) {
regex.lastIndex++;
}
let track = [];
let trackTimeIndex;
let trackNameIndex;
if(m[2] !== undefined)
{
trackTimeIndex = 3;
trackNameIndex = 2;
}
else
{
trackTimeIndex = 4;
trackNameIndex = 5;
}
// Add track beginning converted to seconds
track.push(m[trackTimeIndex].split(':').reduce((acc,time) => (60 * acc) + +time));
// Add track title
track.push(m[trackNameIndex]);
// Add track to tracklist
tracklist.push(track);
}
console.log("Tracklist:", tracklist);
var oldCurrentTrack = document.querySelector("#currentTrackDiv");
if(oldCurrentTrack)
{
oldCurrentTrack.parentNode.removeChild(oldCurrentTrack);
}
// No tracks found
if(tracklist.length == 0)
{
return;
}
var currentTrackElement = document.createElement('template');
currentTrackElement.innerHTML = '<div id="currentTrackDiv" style="position: absolute;top: 80px;right: 30px;background-color: #00000069;padding: 5px;"><span id="currentTrack" style="font-weight: bold;font-size: 22pt; color:#fff;"></span></div>';
document.querySelector("#content").appendChild(currentTrackElement.content.firstChild);
// Check the current position to find the current track played
document.parsedTracklist = tracklist;
addInterval(showCurrentTrack, 5000);
}
function showCurrentTrack()
{
var position = document.querySelector(".html5-main-video").currentTime;
var tracklist = document.parsedTracklist;
var currentTrackSpan = document.querySelector("#currentTrack");
var currentTrackTitle = "";
for(var i = 0; i < tracklist.length; i++)
{
let trackStart = tracklist[i][0];
// We found the track after the current one
if(trackStart > position)
{
currentTrackTitle = tracklist[i - 1][1];
break;
}
}
// If no title was found, we're on the last track
if(currentTrackTitle.length == 0)
currentTrackTitle = tracklist[tracklist.length - 1][1];
currentTrackSpan.textContent = i + "/" + tracklist.length + " - " + currentTrackTitle;
}
function expandPlayerContainer()
{
var video = document.querySelector(".html5-main-video");
// No video found
if (video == null)
{
console.log("Waiting for video...");
return;
}
var container = document.querySelector("div#player-theater-container.style-scope");
container.style.height = "900px";
container.style.minHeight = "unset";
container.style.maxHeight = "unset";
var videoContainer = document.querySelector("div.html5-video-container");
videoContainer.style.height = "900px";
video.style.width = "100%";
video.style.height = "inherit";
video.style.top = "inherit";
video.style.left ="inherit";
clearOneInterval("expandPlayerContainer");
}
function expandPlayer()
{
var video = document.querySelector(".html5-main-video");
// No video found
if (video == null)
{
console.log("Waiting for video...");
return;
}
video.style.width = "100%";
video.style.height = "inherit";
video.style.top = "inherit";
video.style.left ="inherit";
clearOneInterval("expandPlayer");
}
function switchToFullHd()
{
var video = document.querySelector(".html5-main-video");
// No video found
if (video == null)
{
console.log("Waiting for video...");
return;
}
var playerApi = document.getElementById("movie_player");
console.log(playerApi.getAvailableQualityLevels());
// 1080p not available
if(playerApi.getAvailableQualityLevels().indexOf("hd1080") == -1)
{
clearOneInterval("switchToFullHd");
return;
}
clearOneInterval("switchToFullHd");
}