#147 Changed regex pattern to not change anything on the airing page
This commit is contained in:
parent
4ee9b0d651
commit
56d8b718b3
|
@ -11,15 +11,15 @@ export function init() {
|
||||||
if (value) {
|
if (value) {
|
||||||
core.runAfterLoad(() => {
|
core.runAfterLoad(() => {
|
||||||
updateTimestamps(document.documentElement);
|
updateTimestamps(document.documentElement);
|
||||||
}, ".*");
|
}, "^/(?!airing).*$");
|
||||||
|
|
||||||
core.runAfterLocationChange(() => {
|
core.runAfterLocationChange(() => {
|
||||||
updateTimestamps(document.documentElement);
|
updateTimestamps(document.documentElement);
|
||||||
}, ".*");
|
}, "^/(?!airing).*$");
|
||||||
|
|
||||||
core.registerScript(node => {
|
core.registerScript(node => {
|
||||||
updateTimestamps(node);
|
updateTimestamps(node);
|
||||||
}, ".*");
|
}, "^/(?!airing).*$");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue