#91 Added base script file
This commit is contained in:
parent
fb5fa15337
commit
e7a4790970
12
src/javascript/enhancements/watch2getherChat.js
Normal file
12
src/javascript/enhancements/watch2getherChat.js
Normal 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(){
|
||||||
|
|
||||||
|
}
|
|
@ -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();
|
||||||
|
@ -17,3 +18,4 @@ initHelpers();
|
||||||
animeRequests();
|
animeRequests();
|
||||||
languageDisplay();
|
languageDisplay();
|
||||||
quickSearch();
|
quickSearch();
|
||||||
|
watch2getherChat();
|
Loading…
Reference in a new issue