mirror of
https://github.com/anatolykopyl/vk-mute.git
synced 2026-03-26 12:55:13 +00:00
9 lines
240 B
JavaScript
9 lines
240 B
JavaScript
const changeUrlDetect = setInterval((function () {
|
|
let oldUrl = '';
|
|
return function () {
|
|
const currentUrl = window.location.href;
|
|
if(currentUrl !== oldUrl){
|
|
oldUrl = currentUrl;
|
|
}
|
|
}
|
|
})(),100); |