blob: 9581aecab70ad9acd6324e72007a84496b7bd415 [file] [log] [blame]
import {injectStylesheet} from '../common/contentScriptsUtils.js';
import {getOptions} from '../common/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);
});