
如果有和我一样更新前Chrome以及Computer Use可以使用,但是更新后插件入口消失
的,以及api用户切换供应商后消失的、重启电脑后消失的都可以试试这个脚本,不保证每个人都有用
由于上传不了文件,我把代码贴在这里,这是一个cmd脚本,
“@echo off
setlocal
set “SCRIPT=C:\Users\1644156\Documents\Codex\2026-06-01\windows-codex-chrome-computer-use-1\outputs\repair-codex-bundled-plugins.ps1”
if not exist “%SCRIPT%” (
echo Repair script not found:
echo “%SCRIPT%”
echo.
pause
exit /b 1
)
echo Running Codex bundled plugin repair…
echo.
powershell.exe -NoProfile -ExecutionPolicy Bypass -File “%SCRIPT%”
set “EXITCODE=%ERRORLEVEL%”
echo.
if “%EXITCODE%”==“0” (
echo Repair finished successfully.
echo Restart Codex or open a new thread if plugin entries still do not appear.
) else (
echo Repair failed with exit code %EXITCODE%.
)
echo.
pause
exit /b %EXITCODE%
”
1 个帖子 - 1 位参与者