#147 Changed regex pattern to not change anything on the airing page

This commit is contained in:
Serraniel 2020-12-28 18:37:19 +01:00
parent 4ee9b0d651
commit 56d8b718b3
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3

View file

@ -11,15 +11,15 @@ export function init() {
if (value) {
core.runAfterLoad(() => {
updateTimestamps(document.documentElement);
}, ".*");
}, "^/(?!airing).*$");
core.runAfterLocationChange(() => {
updateTimestamps(document.documentElement);
}, ".*");
}, "^/(?!airing).*$");
core.registerScript(node => {
updateTimestamps(node);
}, ".*");
}, "^/(?!airing).*$");
}
});
}