-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScript.js
64 lines (55 loc) · 1.94 KB
/
Script.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
// ==UserScript==
// @name Amazon Audio Player
// @namespace http://tampermonkey.net/
// @version 2.013
// @description Play audio on Amazon pages at a regular interval
// @match https://www.amazon.com/*
// @grant none
// ==/UserScript==
// Audio "Jan 2016"
let l = 'https://cdn.discordapp.com/attachments/896227233713258526/1105640370248884264/alarme.mp3'; // link, USE QUOTES!
let v = 100; // volume 0.001-100
(function() {
let isFunctionRunning = false;
let myAudioElement;
function refreshData() {
myAudioElement = new Audio(l);
myAudioElement.volume = (v/100);
myAudioElement.loop = true;
if (window.sessionStorage.getItem('music_time')) {
myAudioElement.currentTime = window.sessionStorage.getItem('music_time');
}
myAudioElement.play();
setInterval(() => {
window.sessionStorage.setItem('music_time', myAudioElement.currentTime);
}, 100);
}
function startRefreshData() {
if (!isFunctionRunning) {
isFunctionRunning = true;
refreshData();
}
}
// Observe changes to the page content
const observer = new MutationObserver(mutationsList => {
for (const mutation of mutationsList) {
if (mutation.type === 'childList' && mutation.addedNodes.length > 0) {
startRefreshData();
}
}
});
observer.observe(document.body, { childList: true, subtree: true });
window.addEventListener('load', () => {
startRefreshData();
});
// Pause and resume the music when the document becomes hidden or visible
document.addEventListener('visibilitychange', () => {
if (document.hidden) {
myAudioElement.pause();
} else {
myAudioElement.play();
}
});
})();
let x = undefined;
// x had been xiled (haha get the joke) because it is overused, and we need to be more creative