#99 Added empty script for profile

This commit is contained in:
Serraniel 2020-10-27 19:44:17 +01:00
parent 1f924311ec
commit 9c3fbd31a1
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,8 @@
import * as core from '../utils/aniwatchCore';
import * as helper from '../utils/helpers';
export function init() {
core.registerScript(node => {
}, "^/profile/[0-9]*$");
}

View file

@ -5,6 +5,7 @@ import { initHelpers } from './utils/helpers';
// enhancements
import { init as animeRequests } from './enhancements/animeRequests';
import { init as languageDisplay } from './enhancements/languageDisplay';
import { init as profile } from './enhancements/profile';
import { init as quickSearch } from './enhancements/quickSearch';
// core
@ -16,4 +17,5 @@ initHelpers();
// enhancements
animeRequests();
languageDisplay();
profile();
quickSearch();