#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) {
|
||||
core.runAfterLoad(() => {
|
||||
updateTimestamps(document.documentElement);
|
||||
}, ".*");
|
||||
}, "^/(?!airing).*$");
|
||||
|
||||
core.runAfterLocationChange(() => {
|
||||
updateTimestamps(document.documentElement);
|
||||
}, ".*");
|
||||
}, "^/(?!airing).*$");
|
||||
|
||||
core.registerScript(node => {
|
||||
updateTimestamps(node);
|
||||
}, ".*");
|
||||
}, "^/(?!airing).*$");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue