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