blob: 40cd3024340ed3850e685c3f1140d72f61367057 [file] [log] [blame]
import {injectStylesheet} from '../common/contentScriptsUtils';
import {getOptions} from '../common/options/optionsUtils.js';
import {setUpRedirectIfEnabled} from '../redirect/setup.js';
getOptions(['uispacing', 'redirect']).then(options => {
if (options.uispacing) {
injectStylesheet(chrome.runtime.getURL('css/ui_spacing/shared.css'));
injectStylesheet(chrome.runtime.getURL('css/ui_spacing/twbasic.css'));
}
setUpRedirectIfEnabled(options);
});