mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-11 10:31:47 +00:00
8 lines
208 B
JavaScript
8 lines
208 B
JavaScript
module.exports = () => {
|
|
document.addEventListener('apiLoaded', () => {
|
|
document.querySelector('video').addEventListener('loadeddata', e => {
|
|
e.target.pause();
|
|
})
|
|
}, { once: true, passive: true})
|
|
};
|