Feature/#99 hide placeholder tabs #100

Merged
Serraniel merged 5 commits from feature/#99-hide-placeholder-tabs into develop 2020-10-28 19:05:17 +01:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit 9c3fbd31a1 - Show all commits

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