2020-08-26 20:31:56 +02:00
|
|
|
// core
|
|
|
|
import { initCore } from './utils/aniwatchCore';
|
|
|
|
// helper
|
|
|
|
import { initHelpers } from './utils/helpers';
|
|
|
|
// enhancements
|
2020-10-26 20:30:50 +01:00
|
|
|
import { init as anilyr } from './enhancements/anilyr';
|
2020-08-26 20:31:56 +02:00
|
|
|
import { init as animeRequests } from './enhancements/animeRequests';
|
2020-11-14 19:17:47 +01:00
|
|
|
import { init as fontColor } from './enhancements/fontColor';
|
2020-09-20 17:44:43 +02:00
|
|
|
import { init as languageDisplay } from './enhancements/languageDisplay';
|
2020-09-11 16:41:22 +02:00
|
|
|
import { init as notifications } from './enhancements/notifications';
|
2020-08-26 20:31:56 +02:00
|
|
|
import { init as quickSearch } from './enhancements/quickSearch';
|
2020-12-28 16:09:53 +01:00
|
|
|
import { init as timeConversion } from './enhancements/timeConversion';
|
2021-02-13 19:37:37 +01:00
|
|
|
import { init as watch2gether } from './enhancements/watch2gether';
|
2020-11-07 18:47:58 +01:00
|
|
|
// css
|
|
|
|
import { init as cssEnhancements } from './enhancements/cssEnhancements';
|
2020-08-26 20:31:56 +02:00
|
|
|
|
|
|
|
// core
|
|
|
|
initCore();
|
|
|
|
|
|
|
|
//helper
|
|
|
|
initHelpers();
|
|
|
|
|
|
|
|
// enhancements
|
2020-10-26 20:30:50 +01:00
|
|
|
anilyr();
|
2020-08-26 20:31:56 +02:00
|
|
|
animeRequests();
|
2020-11-14 19:17:47 +01:00
|
|
|
fontColor();
|
2020-09-20 17:44:43 +02:00
|
|
|
languageDisplay();
|
2020-10-28 22:39:15 +01:00
|
|
|
notifications();
|
|
|
|
quickSearch();
|
2020-12-28 16:09:53 +01:00
|
|
|
timeConversion();
|
2021-02-13 19:37:37 +01:00
|
|
|
watch2gether();
|
2020-11-07 18:47:58 +01:00
|
|
|
|
|
|
|
// css
|
|
|
|
cssEnhancements();
|