Chrome v106

This commit is contained in:
4JX
2022-10-13 17:03:07 +02:00
parent e979166879
commit a99f023e0b
6 changed files with 118 additions and 0 deletions

View File

@@ -4,10 +4,12 @@ use super::ChromeVersion;
mod v104;
mod v105;
mod v106;
pub(super) fn get_config_from_ver(ver: ChromeVersion) -> BrowserSettings {
match ver {
ChromeVersion::V104 => v104::get_settings(),
ChromeVersion::V105 => v105::get_settings(),
ChromeVersion::V106 => v106::get_settings(),
}
}