2020-08-31 00:49:06 +03:00
|
|
|
export interface Options {
|
|
|
|
useExtension: boolean;
|
|
|
|
supportImmutable: boolean;
|
|
|
|
theme: string;
|
|
|
|
dark: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function getOptions(location: { search: string }) {
|
|
|
|
return {
|
|
|
|
useExtension: location.search.indexOf('ext') !== -1,
|
|
|
|
supportImmutable: location.search.indexOf('immutable') !== -1,
|
2022-05-15 23:16:18 +03:00
|
|
|
theme: getTheme(location),
|
2020-08-31 00:49:06 +03:00
|
|
|
dark: location.search.indexOf('dark') !== -1,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-05-15 23:16:18 +03:00
|
|
|
function getTheme(location: { search: string }) {
|
2020-08-31 00:49:06 +03:00
|
|
|
const match = /theme=([^&]+)/.exec(location.search);
|
|
|
|
return match ? match[1] : 'inspector';
|
|
|
|
}
|