Compare commits

...

1 commit

Author SHA1 Message Date
Serraniel 20b2fe3cb8
#61 Mostly empty script added 2020-10-06 17:46:49 +02:00

View file

@ -0,0 +1,15 @@
import * as core from '../utils/aniwatchCore';
import * as helper from '../utils/helpers';
export function init() {
core.registerScript(node => {
// run the scripts
if (helper.isHtmlElement(node)) {
restructureImport(node)
}
}, "^/profile/[0-9]*\?tab=[0-9]*$");
}
function restructureImport(node){
}