This repository has been archived by the owner on Mar 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserscript.user.js
400 lines (336 loc) · 11.1 KB
/
userscript.user.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
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
// ==UserScript==
// @name YouTubeEXT
// @icon https://www.youtube.com/yt/brand/media/image/YouTube-icon-full_color.png
// @namespace skoshy.com
// @version 0.7.4
// @description Does cool things with YouTube
// @author Stefan Koshy
// @updateURL https://raw.githubusercontent.com/skoshy/YoutubeEXT/master/userscript.js
// @match *://*.youtube.com/*
// @exclude *://*.youtube.com/embed/*
// @grant none
// ==/UserScript==
var scriptid = 'yt-ext';
var newElements = {}; // this object-array will contain all the new elements created for the page
var timers = {}; // this object-array will contain various timers
var cssTopBarHeightOffset = `0px`;
var css = `
#masthead-container.ytd-app {
transition: .2s ease-in-out;
}
html[`+scriptid+`-theater] #masthead-container.ytd-app {
width: 75%;
margin-left: 12.5%;
opacity: 0;
}
html[`+scriptid+`-theater] #masthead-container.ytd-app:hover {
opacity: 1;
}
html[`+scriptid+`-theater] ytd-watch #player.ytd-watch {
z-index: 0;
height: calc(100vh - `+cssTopBarHeightOffset+`);
max-height: none;
}
html[`+scriptid+`-theater] ytd-watch #player.ytd-watch #player-container {
position: fixed;
top:0;
box-sizing: border-box;
padding-top: `+cssTopBarHeightOffset+`;
}
html[`+scriptid+`-theater] ytd-watch #top #container.ytd-watch {
z-index: 1;
position: relative;
background-color: rgba(255,255,255,.55);
opacity: .55;
transition: .2s ease-in-out;
}
html[dark="true"][`+scriptid+`-theater] ytd-watch #top #container.ytd-watch {
background-color: rgba(0,0,0,.55);
}
html[`+scriptid+`-theater] ytd-watch:hover #top #container.ytd-watch {
opacity: 1;
}
html[`+scriptid+`-theater] ytd-watch #top #container.ytd-watch #author-thumbnail,
html[`+scriptid+`-theater] ytd-watch #top #container.ytd-watch #avatar,
html[`+scriptid+`-theater] ytd-watch #top #container.ytd-watch ytd-thumbnail
{ opacity: .55; transition: .2s ease-in-out; }
html[`+scriptid+`-theater] ytd-watch #top #container.ytd-watch #author-thumbnail:hover,
html[`+scriptid+`-theater] ytd-watch #top #container.ytd-watch #avatar:hover,
html[`+scriptid+`-theater] ytd-watch #top #container.ytd-watch ytd-thumbnail:hover
{ opacity: 1; }
/* Specifically used for small screen theater mode */
html[`+scriptid+`-theater] ytd-watch .ytp-iv-video-content {
width: 100% !important;
}
html[`+scriptid+`-theater] ytd-watch #top,
html[`+scriptid+`-theater] ytd-watch #player {
width: 100%;
}
html[`+scriptid+`-theater] .html5-video-player .video-stream {
padding: 0;
}
html[`+scriptid+`-theater] ytd-watch .ytp-chrome-bottom {
left: 0 !important;
margin: 0 auto;
}
/* GO TO TOP BUTTON */
#` + scriptid + `-goToTop {
position: fixed;
bottom: 20px;
right: 20px;
background-color: rgba(255,255,255,.8);
padding: 10px;
border-radius: 30px;
box-shadow: #ccc 0px 0px 10px;
cursor: pointer;
color: #666;
z-index: 2;
transition: .2s ease-in-out;
}
#` + scriptid + `-goToTop:hover {
color: #222;
box-shadow: #aaa 0px 0px 10px;
}
html[`+scriptid+`-scroll-at-top] #` + scriptid + `-goToTop {
display: none !important;
}
/* CUSTOM TOOLTIP */
.` + scriptid + `-tooltip {
position: fixed;
bottom: 5px;
left: 5px;
background: rgba(255, 255, 255, .8);
padding: 3px;
border-radius: 20px;
z-index: 100;
display: none;
}
`;
document.addEventListener("keydown", function(e) {
if (e.altKey === true && e.code == 'KeyO') {
// toggle style
if (isScriptEnabled())
turnOff();
else
turnOn();
resizeCheck();
}
});
function isScriptEnabled() {
var cssEl = document.getElementById(scriptid);
return !cssEl.disabled;
}
function turnOn() {
var cssEl = document.getElementById(scriptid);
cssEl.disabled = false;
for (var key in newElements) {
newElements[key].style.display = 'block';
}
}
function turnOff() {
var cssEl = document.getElementById(scriptid);
cssEl.disabled = true;
for (var key in newElements) {
newElements[key].style.display = 'none';
}
}
/*
This function does a variety of checks and tweaks to the page on the resize and URL popstate
*/
function resizeCheck(e) {
// set theat
}
// passed a target element, will check if it's an input box
function isFocusOnInputBox(target) {
if (target.getAttribute('role') == 'textbox' || target.tagName == 'INPUT' || target.tagName == 'TEXTAREA')
return true;
else
return false;
}
function pausePlayVideoCheck(event) {
if (
event.keyCode === 32 &&
!isFocusOnInputBox(event.target) &&
!event.target.classList.contains('html5-video-player') // don't pause/play if we're on the player itself. the player will handle it.
) {
var videoId, status;
event.preventDefault();
videoId = 'movie_player';
if (document.getElementById(videoId)) {
status = document.getElementById(videoId).getPlayerState();
pausePlayVideo(videoId, status);
}
// if we're on a channel page, allow pausing/playing the main video on the channel homepage
videoId = 'c4-player';
if (document.getElementById(videoId)) {
status = document.getElementById(videoId).getPlayerState();
pausePlayVideo(videoId, status);
}
}
}
function pausePlayVideo(elId, status) {
if (status === 1 || status === 3) {
contentEval('document.querySelector("#' + elId + '").pauseVideo();');
} else if (status === -1 || status === 2 || status === 0) {
contentEval('document.querySelector("#' + elId + '").playVideo();');
}
// N/A (-4), unstarted (-1), ended (0), playing (1), paused (2), buffering (3), video cued (5).
// from https://greasyfork.org/scripts/8687-youtube-space-pause
}
function brightnessChangeCheck(event) {
if (!isFocusOnInputBox(event.target)) {
if (event.shiftKey) {
var video = document.querySelector('video.html5-main-video');
var brightness = parseFloat(parseFromFilter('brightness', video.style.filter));
if (!brightness || isNaN(brightness)) { // no brightness has been specified yet
video.style.filter = 'brightness(1.0)';
brightness = parseFloat(parseFromFilter('brightness', video.style.filter));
}
if (event.keyCode === 33) { // shift+pgup
var newBrightness = brightness + .1;
video.style.filter = 'brightness(' + newBrightness + ')';
showTooltip('Brightness: ' + newBrightness.toFixed(2));
} else if (event.keyCode === 34) { // shift+pgdn
var newBrightness = brightness - .1;
video.style.filter = 'brightness(' + newBrightness + ')';
showTooltip('Brightness: ' + newBrightness.toFixed(2));
}
}
}
}
// will parse attribute from a filter string
// ex: parseFromFilter('brightness', 'brightness(1.5)') => 1.5
// will return false if it can't parse it
function parseFromFilter(name, string) {
if (string == undefined)
return false;
var startLength = name.length + 1;
var startPos = string.indexOf(name + '(');
if (startPos == -1)
return false;
var endPos = string.indexOf(')', startLength + startPos);
if (endPos == -1)
return false;
return string.substring(startLength + startPos, startLength + startPos + endPos);
}
function showTooltip(text) {
newElements.tooltip.innerHTML = text;
newElements.tooltip.style.display = 'block';
clearTimeout(timers.tooltip);
timers.tooltip = setTimeout(function() {
newElements.tooltip.style.display = 'none';
}, 1000);
}
/************
Initialize
************/
function initialize() {
// create the tooltip
newElements.tooltip = document.createElement('div');
newElements.tooltip.className = scriptid + '-tooltip';
setTimeout(function(){newElements.tooltip.style.display = 'none';}, 200); // there needs to be a delay to hide the brightness box for some reason
insertAfter(newElements.tooltip, document.querySelector('body'));
// initialize spacebar checking to pause video
document.body.addEventListener('keydown', pausePlayVideoCheck);
// initialize check for increasing/decreasing brightness
document.body.addEventListener('keydown', brightnessChangeCheck);
// Checks things on window resize
window.addEventListener("resize", resizeCheck);
// Check things when the page URL changes
window.addEventListener('popstate', resizeCheck);
addGlobalStyle(css, scriptid);
// create the "Go To Top" button
newElements.goToTop = document.createElement('div');
newElements.goToTop.id = scriptid + '-goToTop';
newElements.goToTop.onclick = function() {
window.scrollTo(0, 0);
};
newElements.goToTop.innerHTML = `<div class="">▲</div>`;
insertAfter(newElements.goToTop, document.querySelector('body'));
turnOn();
var defaultEvent = {
'type': 'interval'
};
resizeCheck(defaultEvent);
setInterval(function() {
let player = document.querySelector("#player");
if (isTruthy(player) && !player.classList.contains('off-screen')) {
eventFire(player, 'resize');
}
// add/remove theater mode from root body element
if (document.querySelector('ytd-watch[theater-requested_]') != null) {
// theater mode, set it on the body element
document.querySelector('html').setAttribute(scriptid+`-theater`, '');
} else {
document.querySelector('html').removeAttribute(scriptid+`-theater`);
}
// add/remove variable to determine if we're at the top of the page
if (document.querySelector('html').scrollTop != 0) {
// we've scrolled down the page a little
document.querySelector('html').removeAttribute(scriptid+`-scroll-at-top`);
} else {
// top of the page
document.querySelector('html').setAttribute(scriptid+`-scroll-at-top`, '');
}
}, 250);
}
initialize();
/************
Utility Functions
************/
// from https://gist.github.com/skoshy/69a7951b3070c2e2496d8257e16d7981
function isFalsy(item) {
if (
!item
|| (typeof item == "object" && (Object.keys(item).length == 0 && !(item instanceof HTMLElement))) // for empty objects, like {}, [], but omits HTML elements
)
return true;
else
return false;
}
function isTruthy(item) {
return !isFalsy(item);
}
function insertAfter(newNode, referenceNode) {
referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
}
function addGlobalStyle(css, id) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) {
return;
}
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
style.id = id;
head.appendChild(style);
}
// Run codes "unsafely"
// from https://greasyfork.org/scripts/8687-youtube-space-pause
function contentEval(source) {
// Check for function input.
if ('function' === typeof source) {
// Execute this function with no arguments, by adding parentheses.
// One set around the function, required for valid syntax, and a
// second empty set calls the surrounded function.
source = '(' + source + ')();';
}
// Create a script node holding this source code.
var script = document.createElement('script');
script.setAttribute("type", "application/javascript");
script.textContent = source;
// Insert the script node into the page, so it will run, and immediately remove it to clean up.
document.body.appendChild(script);
document.body.removeChild(script);
}
// Used from http://stackoverflow.com/questions/2705583/simulate-click-javascript
function eventFire(el, etype) {
if (el.fireEvent) {
(el.fireEvent('on' + etype));
} else {
var evObj = document.createEvent('Events');
evObj.initEvent(etype, true, false);
el.dispatchEvent(evObj);
}
}