feat: replace Playwright with CloakBrowser for site emulation and update related translations

This commit is contained in:
jxxghp
2026-05-17 15:50:47 +08:00
parent c5e2b1349f
commit dee5d9d213
4 changed files with 21 additions and 16 deletions

View File

@@ -45,7 +45,7 @@ const siteSetting = ref<any>({
Site: {
SITEDATA_REFRESH_INTERVAL: 0,
SITE_MESSAGE: false,
BROWSER_EMULATION: 'playwright',
BROWSER_EMULATION: 'cloakbrowser',
FLARESOLVERR_URL: '',
},
})
@@ -73,7 +73,7 @@ const SiteDataRefreshIntervalItems = [
// 站点访问仿真方式
const BrowserEmulationItems = [
{ title: 'Playwright', value: 'playwright' },
{ title: 'CloakBrowser', value: 'cloakbrowser' },
{ title: 'FlareSolverr', value: 'flaresolverr' },
]