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