#91 Added base script file

This commit is contained in:
Serraniel 2020-10-25 11:54:36 +01:00
parent fb5fa15337
commit e7a4790970
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3
2 changed files with 15 additions and 1 deletions

View file

@ -0,0 +1,12 @@
import * as core from '../utils/aniwatchCore';
import * as helper from '../utils/helpers';
export function init() {
core.runAfterLoad(() => {
manipulateChatInput();
}, "^/watch2gether/.*$");
}
function manipulateChatInput(){
}

View file

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