-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContentScript.js
476 lines (301 loc) · 12.2 KB
/
ContentScript.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
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
const query_title = "yt-formatted-string.ytd-video-primary-info-renderer";
var $j = jQuery.noConflict();
var tester;
var youtubebar;
var video_container;
var is_played=true;
const db = "video-list";
// The id inside chrome.storage.sync which will be used multiple times
const loadIcon = async ()=>{
if($j("#youbookmark-div")[0])
return; // the button has already been added
let butn = document.createElement("div");
butn.classList.add("ytp-button");
butn.style.width = "40px";
butn.innerHTML = `
<div id="youbookmark-div" >
<img src="${chrome.runtime.getURL('assets/img/bookmark-youtube.png')}" class='img-1-ymark' title="Bookmark this timestamp.">
</div>
`;
youtubebar.prepend(butn);
$j("#youbookmark-div").bind("click", (e)=>{
if(is_played)
$j("video")[0].pause();
popup_menu();
});
}
const getTime = t =>{
var date = new Date(0);
date.setSeconds(t);
return date.toISOString().substr(11,8);
}
const TimestampExistAlert = (ctimestamp)=>{
notify("error", `Bookmark for timestamp "${ctimestamp}" has already existed.`);
};
function RemoveMenu(){
$j(".ymark-menu-bookmark").addClass("fadeout_ymark");
setTimeout(function(){
if(!is_played)
$j("video")[0].play();
video_container.children().last().remove();
}, 300);
}
function BookmarkFormBind(vidid, timestamp, ctimestamp){
// Binding some HTML elements to some events and tweaking some stuffs when a user wish
// to open the textarea in order to insert notes into the bookmark
$j(".ymark-menu-bookmark").children().last()
$j(".ymark-menu-bookmark").children().last()[0].style.display = "none";
$j(".ymark-menu-bookmark").append(`
<div class="add-mark-div">
<div>
<label>${document.querySelectorAll(query_title)[1].innerHTML}</label>
</div>
<div>
<div id="timeline">
<label>${$j(".ytp-time-current").html()} / ${$j(".ytp-time-duration").html()}</label>
</div>
<textarea id='reminder-template' placeholder="Reminder..."></textarea>
<label id="y-save-text">Ctrl - Enter to save.</label>
</div>
<div class="confirm-tasks-btn">
<button id="cancel">Close</button>
<button id="save">Save</button>
</div>
</div>
`);
$j("#reminder-template").ready(()=>{
$j("#reminder-template").bind("focus", (e)=>{
$j("#timeline label").css("visibility", "visible");
});
$j("#reminder-template").bind("blur", (e)=>{
$j("#timeline label").css("visibility", "hidden");
});
$j("#reminder-template").focus();
$j("#reminder-template").keydown((e)=>{
if (e.ctrlKey && e.keyCode == 73) {
// Detecting the "Close" key combination Ctrl - I
$j(".confirm-tasks-btn #cancel").click();
}
});
// Gotta find a way to do this in JQUery to blend in :P
document.getElementById("reminder-template").addEventListener("keydown", (event)=>{
event.stopPropagation();
// Prevent the child element from bubbling upward
});
});
$j(".confirm-tasks-btn").ready(()=>{
// Waiting for the note-making form to fully appear on-screen.
$j(".confirm-tasks-btn #cancel").bind("click", (e)=>{
// CANCEL BUTTON
$j(".dmark-root-div").removeClass("appear-dmark");
$j(".dmark-root-div").addClass("disappear-dmark");
RemoveMenu();
});
$j(".confirm-tasks-btn #save").bind("click", (e)=>{
// SAVE BUTTON
chrome.storage.sync.get([db], (items)=>{
let {order, videos} = Object.values(items)[0];
let context = $j("#reminder-template").val();
if(!videos.hasOwnProperty(vidid)){
// video hasn't been added, time to create a new record
videos[vidid] = {
title : document.querySelectorAll(query_title)[1].innerHTML,
// Title of the youtube video
fulltime : $j(".video-stream")[0].duration,
// The total time of the video
url : `https://youtube.com/watch?v=${vidid}`,
// The current youtube video URL
id : vidid,
// The current unique video identifier
img : `https://img.youtube.com/vi/${vidid}/mqdefault.jpg`,
// Thumbnail image's link
// To grab Youtube's thumbnail : https://img.youtube.com/vi/< id of the video>/mqdefault.jpg
bookmarks : {
[ctimestamp] : {
description : context
}
},
// List of all of the bookmarks which this extension is going to
// add
totalmarks : 0,
// Total number of bookmarks currently existing
};
order.unshift(vidid);
// Newest video get to stay at the beginning of a list
}else{
// Video id already existed and this might be a brand new
// bookmark
if(videos[vidid].bookmarks.hasOwnProperty(ctimestamp)){
// Timestamp has already been added
TimestampExistAlert(ctimestamp);
return;
}else{
videos[vidid].bookmarks[ctimestamp] = {description:context};
}
}
chrome.storage.sync.set({[db]:{order:order, videos:videos}}, ()=>{
$j(".confirm-tasks-btn #cancel").click();
notify("ok", `Created bookmark for timestamp "${ctimestamp}".`);
if(!is_played)
$j("video")[0].play();
});
});
});
$j("#reminder-template").keydown((e)=>{
// Detecting key being made on the reminder-template form.
if (e.ctrlKey && e.keyCode == 13) {
// Ctrl + Enter means the user wish to save back information
$j(".confirm-tasks-btn #save").click();
};
});
});
}
const popup_menu = async ()=>{
let utility_box = document.createElement("div");
utility_box.classList.add("ymark-menu-bookmark");
utility_box.innerHTML = `<div class="dmark-root-div appear-dmark"></div>`;
video_container.append(utility_box);
let url = window.location.href.split("?")[1];
let urlparser = new URLSearchParams(url);
let vidid = urlparser.get("v");
// Splitting the current youtube's id first since it's gonna be used multiple times
// later in this script...
let timestamp = parseInt($j(".video-stream")[0].currentTime);
let ctimestamp = getTime(timestamp);
// The current timestamp the video has been paused at
chrome.storage.sync.get([db], (items)=>{
if(items===undefined)return;
let {order, videos} = Object.values(items)[0];
if(videos[vidid]!==undefined){
if(videos[vidid].bookmarks.hasOwnProperty(ctimestamp)){
$j(".ymark-menu-bookmark").remove();
// Removing the entire bookmark section before popping an alert
TimestampExistAlert(ctimestamp);
// Popping an alert
return;
}
}
BookmarkFormBind(vidid, timestamp, ctimestamp);
});
}
function GetDOMReady(f){
/*
This function will do some necessary DOM manipulation like grabbing the element
of .html5-video-player and also binding necessary function to "play" and "pause"
events on the main <video>. before executing the callback function f(...)
f => Callback function after successfully grabbing the element.
*/
$j("video").ready(function(){
$j("video").on("play", ()=>{
is_played = true;
});
$j("video").on("pause", ()=>{
is_played = false;
});
});
// binding play + pause event to <video> ^^^^
$j(".html5-video-player").ready(()=>{
video_container = $j(".html5-video-player");
f();
});
}
GetDOMReady(()=>{});
const load_fonts = async ()=>{
// Loadng custom fonts inside the video
$j("head").append(`
<style>
@font-face {
font-family: MainFont;
src: url(${chrome.runtime.getURL('assets/fonts/Oxygen-Regular.ttf')});
}
@font-face {
font-family: HeaderFont;
src: url(${chrome.runtime.getURL('assets/fonts/Quicksand_Bold.otf')});
}
@font-face {
font-family: ThirdFont;
src : ${chrome.runtime.getURL('assets/fonts/Exo-Medium.otf')});
}
</style>
`);
}
function notify(type, msg){
// This function is used to create a notification box at the bottom of the youtube video
// This box takes in two parameters which is "type" and "msg"
/*
type : Type of message this is
=> "error" : error messages
=> "ok" : Success messages
msg : the message the user wishes to display.
*/
const img = (
type=="error" ?
chrome.runtime.getURL('assets/img/fail.png') :
chrome.runtime.getURL('assets/img/ok.png')
);
const html_ = `
<div class="notify-ymt">
<div class="${type=='error' ? 'errorbox' : 'successbox'}">
<img src="${img}" />
<label id="title"></label>
<p id="message">${msg}</p>
<div id="loader"></div>
</div>
</div>
`;
$j("html").append(html_);
setTimeout(() => {
$j(".notify-ymt > div").addClass("loadoff");
setTimeout(() => {
$j(".notify-ymt").remove()
}, 700);
}, 7000);
}
function SendMessageBackGround(){
// Called when the ContentScript is ready and it will send back a message
// to the Background script to notify it that this is ready and will load
// the icon into the utility bars afterward.
chrome.runtime.sendMessage("READY",(response) => {
if(response==="NEWVID"){
$j(".ytp-right-controls").ready(function() {
youtubebar = $j(".ytp-right-controls");
loadIcon();
});
}
});
}
async function MonitorURLChange(){
/*
The content script can only be available in two hosts
1. youtube.com/watch?v=<id>
2. youtune.com/
The valid route is /watch?v but if the user chooses to go with a different
route rather than /watch?v, this function will be called and it will wait
until the user finally choose to switch to a video, only then it will
GetDOMReady(...) in order to grab the necessary HTML elements
and calling SendMessageBackGround(...) afterward to notify the background
script of new changes...
*/
while((new URL(window.location.href)).pathname !== "/watch" ){
await new Promise(r => setTimeout(r, 200));
}
GetDOMReady(SendMessageBackGround);
// Similar to
/*
GetDOMReady(()=>{
SendMessageBackGround();
})
*/
}
$j(document).ready(()=>{
load_fonts(); // Loadng existing fonts into the system here
window.location.href.startsWith("https://www.youtube.com/watch") ? SendMessageBackGround() : MonitorURLChange();
chrome.storage.sync.get([db], (e)=>{
// If this is a freshly initialized extension which just had been installed
// Initialize it with an empty dataset
// Structure : {order:[], videos:[]}
if(Object.entries(e).length === 0)
// Initialize the database first
chrome.storage.sync.set({[db]:{order:[],videos:{}}});
});
})