Feature/#94 auto resume after screenshot #98

Closed
Serraniel wants to merge 10 commits from feature/#94-auto-resume-after-screenshot into develop
2 changed files with 15 additions and 1 deletions
Showing only changes of commit e7a4790970 - Show all commits

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 languageDisplay } from './enhancements/languageDisplay';
import { init as quickSearch } from './enhancements/quickSearch';
import { init as watch2getherChat } from './enhancements/watch2getherChat';
// core
initCore();
@ -16,4 +17,5 @@ initHelpers();
// enhancements
animeRequests();
languageDisplay();
quickSearch();
quickSearch();
watch2getherChat();